Assets are wallets tied to a specific blockchain and token within an account. Each asset has a unique deposit address and tracks its own balance. You can add individual assets or batch-create many at once.Documentation Index
Fetch the complete documentation index at: https://docs.yativo.com/llms.txt
Use this file to discover all available pages before exploring further.
Get All Supported Assets
GET/assets/get-all-assets
Returns the full list of chains and tokens available on the platform.
cURL
Response
Get Supported Chains
GET/assets/get-chains
cURL
Add an Asset
POST/assets/add-asset
Creates a new wallet (deposit address) for a specific chain and token within an account.
The account this wallet belongs to.
The blockchain identifier (e.g.,
ethereum, solana). See Supported Chains.The token ticker (e.g.,
USDC, SOL).Response
Batch Add Assets
POST/assets/batch-add-asset
Create multiple wallets in a single request. Useful when onboarding a new account that needs wallets across multiple chains.
The account these wallets will belong to.
Array of chain identifiers.
Array of token tickers. Each ticker is paired with the corresponding chain by index.
cURL
Response
Get User Assets
POST/assets/get-user-assets
Returns all assets (wallets) for the authenticated user, or filtered by account.
Filter assets by account. If omitted, returns all assets across all accounts.
cURL
Response
Check Balance
POST/balance/check
Returns the current balance for a specific asset.
The asset ID to check the balance for.
cURL
Response
Archive an Asset
POST/assets/archive-asset
Deactivates a wallet. The address remains valid for receiving funds, but the asset will no longer appear in active asset lists.
The ID of the asset to archive.
cURL
Add Customer Asset
POST/assets/add-customer-asset
Create a wallet for a specific B2B customer. See Customers for context on the customer model.
The customer ID to create the wallet for.
Blockchain identifier.
Token ticker.
cURL
Get Customer Assets
POST/assets/get-customer-assets
Returns all wallets for a B2B customer.
Filter by customer. If omitted, returns assets for all customers.
cURL
Supported Chains & Tickers Reference
| Chain | Native | Stablecoins |
|---|---|---|
| Ethereum | ETH | USDC, USDT, DAI |
| Solana | SOL | USDC_SOL, USDT_SOL |
| Bitcoin | BTC | — |
| Polygon | POL | USDC_POLYGON, USDT_POLYGON |
| BSC | BNB | USDC_BSC, USDT_BSC |
| Base | ETH_BASE | USDC_BASE |
| Arbitrum | ETH_ARBITRUM | USDC_ARBITRUM, USDT_ARBITRUM |
| Optimism | ETH_OPTIMISM | USDC_OPTIMISM, USDT_OPTIMISM |
| XDC | XDC | USDC_XDC, USDT_XDC |
Deposit addresses are chain-specific. Never send a token to an address on the wrong chain — funds sent to the wrong network cannot be automatically recovered.

