Skip to main content
GET
/
api
/
cards
/
{id}
/
transactions
List transactions for a card
curl --request GET \
  --url https://mag3nt.com/api/cards/{id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "id": "txn_a1b2c3d4-...",
      "card_id": "<string>",
      "amount": 123,
      "merchant": "<string>",
      "status": "<string>",
      "tx_hash": "<string>",
      "network": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.mag3nt.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Session token from POST /api/auth/verify

Path Parameters

id
string
required

Response

200 - application/json

Transactions list

transactions
object[]