Skip to main content
GET
/
assets
List assets/tokens
curl --request GET \
  --url https://api.breezing.io/v1/assets
{
  "success": true,
  "data": [
    {
      "id": 123,
      "symbol": "ETH",
      "address": "<string>",
      "orgId": 123,
      "companyId": 123,
      "accountCode": "1200",
      "accountName": "Crypto Assets",
      "isSpam": true,
      "createdAt": 123,
      "updatedAt": 123
    }
  ],
  "pagination": {
    "limit": 123,
    "cursor": 123,
    "has_more": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://learn.breezing.io/llms.txt

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

Query Parameters

org_id
string
required

Organization ID. Use GET /v1/companies to discover available org/company pairs.

Example:

"1"

company_id
string
required

Company ID. Use GET /v1/companies to discover available companies and their access levels.

Example:

"1"

cursor
string

Asset ID to start after (cursor-based pagination)

Example:

"100"

limit
string
default:50

Number of assets to return (1-100)

Example:

"50"

Search by token symbol (prefix match, e.g. "ETH", "USDC")

Example:

"ETH"

show_spam
enum<string>
default:notSpam

Spam filter (default: "notSpam"). Breezing auto-detects spam/airdrop tokens. Use "all" to include them in results.

Available options:
all,
spamOnly,
notSpam

Response

Assets retrieved successfully

success
enum<boolean>
required
Available options:
true
data
object[]
required
pagination
object
required
Last modified on April 12, 2026