Skip to main content
GET
/
screening
/
trlink
/
customers
/
integration
/
{customerIntegrationId}
/
assets
TypeScript
const response: Promise<FireblocksResponse<TRLinkAssetsListPagedResponse>> = fireblocks.tRLink.listTRLinkSupportedAssets(tRLinkApiListTRLinkSupportedAssetsRequest);
{
  "data": [
    {
      "id": "USDC_ETH",
      "name": "USD Coin",
      "type": "ERC20",
      "contractAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
      "nativeAsset": "ETH",
      "decimals": 6,
      "issuerAddress": "0x1234567890abcdef1234567890abcdef12345678"
    }
  ],
  "partnerCanHandleAnyAsset": true,
  "note": "Partner can handle assets beyond those explicitly listed",
  "paging": {
    "next": "eyJwYWdlIjoyLCJsaW1pdCI6MTAwfQ=="
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

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

Path Parameters

customerIntegrationId
string<uuid>
required

Customer integration unique identifier

Query Parameters

pageSize
integer
default:100

Number of results per page (max 100)

Required range: 1 <= x <= 100
pageCursor
string

Cursor for pagination (from previous response)

Response

Supported assets retrieved successfully

Paginated list of supported assets with partner capability flag

data
object[]
required

List of supported assets

partnerCanHandleAnyAsset
boolean
required

Whether partner can handle any asset (not just explicitly listed ones)

Example:

true

note
string
required

Note about asset support capabilities

Example:

"Partner can handle assets beyond those explicitly listed"

paging
object