> For the complete documentation index, see [llms.txt](https://prepaidify.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prepaidify.gitbook.io/docs/virtual-card/api-integration/api-for-fetching-usable-card-segments.md).

# API For Fetching Usable Card Segments

### Description

Retrieve available card ranges

### Request URL

/open/api/card/vd/list

### Request Method

GET

### Response Parameter

| Parameter | Type   | Description             |
| --------- | ------ | ----------------------- |
| vid       | string | ID of the card provider |
| cardBin   | string | Card range              |
| desp      | string | Card range description  |

### Response Example

```
{
    "success": true,
    "error":false,
    "msg": "success",
    "code": 0,
    "model": [
        {
            "vid": "v_5bc814",
            "cardBin": "400000",
            "desp": "sandbox test cardbin"
        }
    ],
    "traceId": 1646651297839
}
```
