Authorizations
API Key
WebAuthn (Passkey)
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Body
Unique identifier for a given organization.
Enum options: eip155:1, eip155:11155111, eip155:8453, eip155:84532, eip155:137, eip155:80002
Response
A successful response returns the following fields:
List of asset metadata
The caip-19 asset identifier
The number of decimals this asset uses
The url of the asset logo
curl --request POST \
--url https://api.turnkey.com/public/v1/query/list_supported_assets \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"caip2": "<eip155:1>"
}'
{
"assets": [
{
"caip19": "<string>",
"symbol": "<string>",
"decimals": "<number>",
"logoUrl": "<string>",
"name": "<string>"
}
]
}