Skip to main content
GET
/
intent
/
discovery
/
deposit
/
tokens
Get deposit tokens for a chain
curl --request GET \
  --url https://api.portal.blend.money/sdk/intent/discovery/deposit/tokens \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Publishable-Key: <api-key>'
{
  "status": "success",
  "data": [
    {
      "chainId": 8453,
      "address": "0x1111111111111111111111111111111111111111",
      "symbol": "<string>",
      "name": "<string>",
      "decimals": 123,
      "price": {
        "USD": 100.5,
        "EUR": 92.4
      },
      "logoURI": "<string>",
      "balance": "<string>",
      "amount": {
        "USD": 100.5,
        "EUR": 92.4
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.blend.money/llms.txt

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

Authorizations

X-Publishable-Key
string
header
required

Client-safe Account Type key, for example pk_live_....

Authorization
string
header
required

SIWE session token returned by /auth/verify.

Query Parameters

chainId
integer
required
Required range: x >= 1
Example:

8453

eoa
string
Pattern: ^0x[0-9a-fA-F]{40}$
Example:

"0x1111111111111111111111111111111111111111"

Response

Deposit token catalog or wallet-aware holdings

status
enum<string>
required
Available options:
success
data
object[]
Last modified on May 5, 2026