For the complete documentation index, see llms.txt. This page is also available as Markdown.

Discovery

Operations for discovering supported chains and tokens

List supported chains

get

Discover the blockchains supported by the orda platform. Returns the active chain catalog used for crypto-to-crypto, off-ramp, and on-ramp flows. Results are cached for 5 minutes.

Use the optional chainId and chainType query parameters to filter the catalog. Both accept comma-separated values.

Authorizations
x-client-idstringRequired

Your project client ID from orda dashboard

x-signaturestringRequired

HMAC-SHA256 signature of canonical request body using your client secret

x-timestampstringRequired

Unix timestamp in milliseconds for replay protection (recommended)

Query parameters
chainIdstringOptional

Comma-separated list of chain IDs to filter by (positive integers).

Example: 1,137,8453
chainTypestringOptional

Comma-separated list of chain types to filter by.

Example: EVM,SOLANA
Header parameters
x-client-idstringRequired

Your project client ID from orda dashboard

Default: prj_abc123def456ghi789Example: prj_abc123def456ghi789
x-signaturestringRequired

HMAC-SHA256 signature of canonical request body using your client secret

Default: a1b2c3d4e5f6789abc123def456ghi789abc123def456Example: a1b2c3d4e5f6789abc123def456ghi789abc123def456
x-timestampstringOptional

Unix timestamp in milliseconds for replay protection (recommended)

Default: 1704067200000Example: 1704067200000
Responses
200

List of supported chains

application/json
get/chains

List supported tokens

get

Discover the tokens supported by the orda platform. Returns a paginated, filterable list of active tokens. Results are cached for 5 minutes.

Filter with the optional chainId, symbol, and featured query parameters (chainId and symbol accept comma-separated values), and page through results with page and limit.

Authorizations
x-client-idstringRequired

Your project client ID from orda dashboard

x-signaturestringRequired

HMAC-SHA256 signature of canonical request body using your client secret

x-timestampstringRequired

Unix timestamp in milliseconds for replay protection (recommended)

Query parameters
chainIdstringOptional

Comma-separated list of chain IDs to filter by (positive integers).

Example: 1,137
symbolstringOptional

Comma-separated list of token symbols to filter by (max 50 chars each).

Example: USDC,ETH
featuredstring · enumOptional

Whether to return only featured tokens, only non-featured, or all. Applied only when the token whitelist is enabled.

Default: trueExample: truePossible values:
pageinteger · min: 1Optional

Page number (1-based).

Default: 1Example: 1
limitinteger · min: 1 · max: 1000Optional

Number of tokens per page (max 1000).

Default: 100Example: 100
Header parameters
x-client-idstringRequired

Your project client ID from orda dashboard

Default: prj_abc123def456ghi789Example: prj_abc123def456ghi789
x-signaturestringRequired

HMAC-SHA256 signature of canonical request body using your client secret

Default: a1b2c3d4e5f6789abc123def456ghi789abc123def456Example: a1b2c3d4e5f6789abc123def456ghi789abc123def456
x-timestampstringOptional

Unix timestamp in milliseconds for replay protection (recommended)

Default: 1704067200000Example: 1704067200000
Responses
200

Paginated list of supported tokens

application/json
get/tokens

Last updated