List cards
curl --request GET \
--url https://sg.sandbox.api.reap.global/cards/ \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/cards/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/cards/"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "VIRTUAL",
"cardDesignId": "<string>",
"status": "ACTIVE",
"blockReason": {
"type": "CLIENT_REQUESTED",
"message": "<string>"
},
"blockLiftable": true,
"frozen": true,
"cardholderName": "<string>",
"last4": "<string>",
"3dsChallengeMethod": "SMS",
"physicalCardStatus": "NOT_ORDERED",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>"
}Cards
List cards
Retrieves a paginated list of cards. Use cursor-based pagination. Filter by accountId to get cards for a specific account.
GET
/
cards
/
List cards
curl --request GET \
--url https://sg.sandbox.api.reap.global/cards/ \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/cards/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/cards/"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "VIRTUAL",
"cardDesignId": "<string>",
"status": "ACTIVE",
"blockReason": {
"type": "CLIENT_REQUESTED",
"message": "<string>"
},
"blockLiftable": true,
"frozen": true,
"cardholderName": "<string>",
"last4": "<string>",
"3dsChallengeMethod": "SMS",
"physicalCardStatus": "NOT_ORDERED",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"nextCursor": "<string>"
}Authorizations
API key as Bearer token
Headers
API version (YYYY-MM-DD)
Available options:
2025-02-14 Example:
"2025-02-14"
Query Parameters
Maximum number of items to return (1-100, default: 20)
Required range:
x <= 100Examples:
20
50
100
Opaque cursor for pagination. Pass nextCursor from previous response to get next page.
Filter cards by exact ID match
Filter cards by status (comma-separated)
ACTIVE: Card is active and can be usedFROZEN: Card is frozen - the soft toggle a cardholder flips (e.g. a misplaced card). Unfreeze restores it.BLOCKED: Card is blocked. Whether unblock can lift it depends on the block reason; the rest need Reap support.EXPIRED: Card has expired
Available options:
ACTIVE, FROZEN, BLOCKED, EXPIRED Filter cards by type (comma-separated)
Available options:
VIRTUAL, PHYSICAL Filter cards by physical card lifecycle status (comma-separated). Only meaningful for PHYSICAL cards.
Available options:
NOT_ORDERED, REQUESTED, IN_PRODUCTION, PRODUCTION_COMPLETED, IN_TRANSIT, OUT_FOR_DELIVERY, DELIVERED, ACTIVATED, CANCELED, DELIVERY_FAILED, EXCEPTION Filter cards by account ID(s) (comma-separated)
Filter cards by user ID(s) (comma-separated)