Documentation Index
Fetch the complete documentation index at: https://docs.orca.so/llms.txt
Use this file to discover all available pages before exploring further.
Token Endpoints
Endpoints for querying token information, metadata, and pricing.List Tokens
GET
Retrieve a paginated list of tokens with optional sorting.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
next | string | Pagination cursor for next page |
previous | string | Pagination cursor for previous page |
size | integer | Results per page (max 3000) |
sort_by | string | Sort field: address, mint_id, volume_24h |
sort_direction | string | asc or desc |
tokens | string | Comma-separated token addresses to filter |
Example Request
Example Response
Search Tokens
GET
Search for tokens by name, symbol, or address. Supports partial, case-insensitive matching.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
q | string | Required. Search query (name, symbol, or address) |
Example Request
Example Response
Get Token by Address
GET
Retrieve detailed information for a specific token by its mint address.
Path Parameters
| Parameter | Type | Description |
|---|---|---|
mint_address | string | Required. The token’s mint address |
Example Request
Example Response
Response Fields
| Field | Type | Description |
|---|---|---|
address | string | Token mint address |
symbol | string | null | Token symbol (e.g., “SOL”, “USDC”) |
name | string | null | Full token name |
decimals | integer | Number of decimal places |
imageUrl | string | null | URL to token logo image |
programId | string | SPL Token program ID |
tags | string | Comma-separated extension tags |
Some tokens may have
null values for symbol, name, or imageUrl if metadata is not available.Common Token Addresses
Here are some commonly used token addresses on Solana:| Token | Address |
|---|---|
| SOL (Wrapped) | So11111111111111111111111111111111111111112 |
| USDC | EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v |
| USDT | Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB |
| ORCA | orcaEKTdK7LKz57vaAYr9QeNsVEPfiu6QeMU1kektZE |
