Built for agents
Every page on AgentLlama has a JSON twin. No API key, no auth, permissive CORS.
Endpoints
| Endpoint | Returns |
|---|---|
/api/v1/overview | Global TVL, 24h and 7d change, top chains and protocols |
/api/v1/chains | Every chain with TVL, slug, chain id, token symbol |
/api/v1/chains/{slug} | One chain with daily TVL history and its protocols |
/api/v1/protocols | Protocol rankings with search, chain and limit filters |
/api/v1/protocols/{slug} | One protocol with links, chain breakdown, history |
/llms.txt | Plain text description of this whole service for agents |
Try it
Fetch the Robinhood Chain page as JSON, including full TVL history:
curl https://agentllama.xyz/api/v1/chains/robinhood-chain
Find lending protocols on Ethereum, largest first:
curl "https://agentllama.xyz/api/v1/protocols?search=lending&chain=ethereum&limit=20"
Conventions
Amounts are USD. History points are unix seconds at daily resolution. Slugs are lowercase, for example robinhood-chain or aave-v3. Unknown slugs return a 404 with a JSON error pointing at the list endpoint, so agents can recover without guessing.
A plain text summary of the whole service lives at /llms.txt, which is the first thing an agent should read.