| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

### API Response Structure

#### Request Parameters

- **bin**  
  string  
  required  
  `^\d{6,11}$`  
  The card's Bank Identification Number (BIN), consisting of the first 6 to 11 digits of the card number.

- **accept**  
  string  
  enum  
  Defaults to application/hal+json  
  Generated from available response content types  
  Allowed:  
  `application/hal+json``application/problem+json`

### Response Codes

- ``200      Successful operation``
- ``400      The server cannot or will not process the request due to something that is perceived to be a client error``
- ``401      Authentication credentials were either missing or incorrect``
- ``403      Authentication credentials used do not have have permissions to perform the request``
- ``404      The requested resource was not found on the server``
- ``500      The server encountered an unexpected condition that prevented it from fulfilling the request``

### Example API Request

```bash
curl --request GET \
     --url https://api.astrada.co/bin-lookup \
     --header 'accept: application/hal+json'
```

### Example API Response

```json
{
  "bin": "411111",
  "network": "VISA",
  "type": "COMMERCIAL",
  "fundingType": "CREDIT",
  "issuerName": "Example Bank",
  "issuerCountry": "USA",
  "issuerRegion": "NA"
}
```
