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>",
  "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

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200 - application/json
address_city
string
address_country
string
address_postal_code
string
address_state
string
address_street
string
balance
number
card_number
string
created_at
string
currency
string
cvv
string
expiry
string
freeze
boolean
id
string
is_physical
boolean
issuer
string
masked_pan
string
name_on_card
string
status
string
total_funded
number
type
string
updated_at
string