Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.donate.gg/llms.txt

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

The chains endpoint returns the list of blockchain networks currently supported by Donate.gg.

List supported chains

GET /chains Returns an array of all supported chains. Bitcoin is currently excluded.
curl https://www.donate.gg/api/v1/chains \
  -H "donate-api-key: YOUR_API_KEY"
Response
[
  { "id": 1, "name": "Ethereum", "type": "EVM" },
  { "id": 8453, "name": "Base", "type": "EVM" },
  { "id": 900, "name": "Solana", "type": "SOLANA" }
]
Response fields
FieldTypeDescription
idnumberUnique chain identifier
namestringHuman-readable chain name
typestringChain family — "EVM" or "SOLANA"
The chain IDs match standard identifiers (e.g. 1 for Ethereum mainnet, 8453 for Base). Use the id field when constructing paths for the token leaderboard endpoint.