Skip to main content
GET
/
v1
/
external
/
chains
/
{blockchainId}
/
tokens
Retrieves the tokens XFlow tracks for the specified blockchain.
curl --request GET \
  --url https://api.pulsy.app/v1/external/chains/{blockchainId}/tokens \
  --header 'Authorization: Basic <encoded-value>'
{
  "items": [
    {
      "symbol": "<string>",
      "name": "<string>",
      "contract": "<string>",
      "url": "<string>"
    }
  ],
  "totalCount": 123
}

Authorizations

Authorization
string
header
required

Basic auth required for external APIs. Example: "Authorization: Basic {base64EncodedPasswordString}"

Path Parameters

blockchainId
string
required

Identifier of the blockchain.

Query Parameters

Take
integer
Required range: 0 <= x <= 1000
Offset
integer
Required range: 0 <= x <= 100000

Response

Success

Paged list of tokens tracked by XFlow for a specific blockchain.

items
object[] | null
totalCount
integer