Skip to main content
GET
/
v1
/
external
/
chains
Retrieves all blockchains tracked by XFlow.
curl --request GET \
  --url https://api.pulsy.app/v1/external/chains \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "blockchainId": "<string>",
    "name": "<string>",
    "explorerUrl": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Response

Success

blockchainId
string | null

Unique identifier of the blockchain.

name
string | null

Human-readable blockchain name.

explorerUrl
string | null

URL of the chain explorer.