Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.duelduck.com/llms.txt

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

Search Solana tokens by symbol or name (query params). Returns list of matching tokens.

Parameters

Default value for limit: 20
NameTypeQueryRequiredDescription
searchstringsearchyesSearch string (symbol or name)
limitinteger20noMax results to return

Responses

Response content type: application / json .

Code 200

List of matching tokens.
[
  {
    "decimals": 0,
    "image_url": "string",
    "is_verified": true,
    "market_cap": 0,
    "mint": "string",
    "name": "string",
    "program_id": "string",
    "symbol": "string",
    "updated_at": "string",
    "usd_price": 0
  }
]

Code 400

Invalid request params.
{
  "message": "string",
  "status": 0
}

Code 500

Internal server error.
{
  "message": "string",
  "status": 0
}