DocsAPI Reference
  • Data API
    • POSTGet BIN
LogoLogo
Login
Login
Data API

Beta
POST
/v1/card_lookup
POST
/v1/card_lookup
1curl -X POST https://{{vault_url_identifier}}.vault.skyflowapis.com/v1/card_lookup \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "BIN": "455673070"
6}'
Try it
1{
2 "cards_data": [
3 {
4 "BIN": "012345",
5 "issuer_name": "JPMorgan Chase Bank N.A.",
6 "country_code": "US",
7 "currency": "",
8 "card_type": "credit",
9 "card_category": "Visa Traditional",
10 "card_scheme": "Visa"
11 }
12 ]
13}
Was this page helpful?
Previous

List Audit Events

Next
Built with

Note: This endpoint is in beta and subject to change.

Returns the specified card metadata.

Get BIN

Authentication

AuthorizationBearer
Access token, prefixed by Bearer: Bearer &lt;token&gt;. Retrieved using <a href='https://readme.skyflow.com/reference/Authentication/OAuth2'>OAuth2</a> security scheme.

Request

Request to return specific card metadata.
BINobjectRequired
Find card metadata by BIN.
OR
Skyflow IDobjectRequired

Find card metadata by skyflow_id.

Response

A successful response.
cards_datalist of objects or null
Card metadata associated with the specified BIN.

Errors

Access token, prefixed by Bearer: Bearer <token>. Retrieved using OAuth2 security scheme.