Cards
Get Card
Get card
GET
/
cards
/
{id}
curl -X GET https://api.swervpay.co/api/v1/cards/{id} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
{
"address_city": "<string>",
"address_country": "<string>",
"address_postal_code": "<string>",
"address_state": "<string>",
"address_street": "<string>",
"balance": 123,
"card_number": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"cvv": "<string>",
"expiry": "<string>",
"freeze": true,
"id": "<string>",
"is_physical": true,
"issuer": "<string>",
"masked_pan": "<string>",
"name_on_card": "<string>",
"pending_balance": 123,
"status": "<string>",
"total_funded": 123,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
curl -X GET https://api.swervpay.co/api/v1/cards/{id} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl -X GET https://api.swervpay.co/api/v1/cards/{id} \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
{
"address_city": "<string>",
"address_country": "<string>",
"address_postal_code": "<string>",
"address_state": "<string>",
"address_street": "<string>",
"balance": 123,
"card_number": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"currency": "<string>",
"cvv": "<string>",
"expiry": "<string>",
"freeze": true,
"id": "<string>",
"is_physical": true,
"issuer": "<string>",
"masked_pan": "<string>",
"name_on_card": "<string>",
"pending_balance": 123,
"status": "<string>",
"total_funded": 123,
"type": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}