Skip to main content
GET
/
cards
/
{card_id}
/
transactions
Get Virtual Card Transactions
curl --request GET \
  --url https://sandbox.sturdytechnologies.com/v3/cards/{card_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "items": [
      {
        "amount": 100.5,
        "card_id": "card_12345",
        "currency": "USD",
        "description": "Payment at Store",
        "merchant_name": "Store Inc.",
        "transaction_date": "2023-10-01T12:34:56Z",
        "transaction_id": "txn_12345",
        "transaction_status": "processing|successful|failed",
        "transaction_type": "debit|credit"
      }
    ],
    "page": 123,
    "total_count": 123,
    "total_pages": 123
  },
  "message": "<string>",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

card_id
string
required

Card Identifier

Response

OK

data
object
message
string
success
boolean