BTKN Token Transactions

Returns the full transaction history for a specific Spark token, including transfers, mints, and burns.

get

Get transactions for token

Authorizations
Path parameters
identifierstringRequiredExample: 691c8f8a06274c6d17956e2e4115935d501d85ee569319d20b50e1fe4195b33d
Query parameters
offsetnumberOptionalDefault: 0
limitnumber · min: 1 · max: 100OptionalDefault: 25
Responses
200

Default Response

application/json
get
/v1/spark/tokens/{identifier}/transactions
GET /v1/spark/tokens/{identifier}/transactions HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
  "meta": {
    "totalItems": 1,
    "limit": 1,
    "offset": 1
  },
  "data": [
    {
      "id": "text",
      "type": "text",
      "status": "text",
      "createdAt": "text",
      "updatedAt": "text",
      "from": {
        "type": "text",
        "identifier": "text",
        "pubkey": "text"
      },
      "to": {
        "type": "text",
        "identifier": "text",
        "pubkey": "text"
      },
      "amount": 1,
      "valueUsd": 1
    }
  ]
}

Last updated