Machine-readable markets
Agents can read the same asset registry and lending opportunity feeds used by Indexio.
GET /api/registryGET /api/lending/opportunitiesGive an AI agent or trading bot a clean Base-native interface for discovery, quotes and wallet-signed execution. Indexio never asks the agent to hand over a private key.
Agents can read the same asset registry and lending opportunity feeds used by Indexio.
GET /api/registryGET /api/lending/opportunitiesSend a wallet, USDC amount and 2–10 weighted Base assets. Indexio returns the exact approval and router transaction payloads after route checks.
POST /api/agent/quoteGPT, Grok or another bot can reason about the trade and prepare it, while the configured user or agent wallet remains the signer and custodian.
chainId: 8453POST /api/agent/quote
{
"wallet": "0x...",
"name": "Base AI",
"total": "100000000",
"allocations": [
{ "ticker": "USDC", "weight": 20 },
{ "ticker": "WETH", "weight": 80 }
]
}For GPT or Grok, expose these HTTPS endpoints as tools/actions in the agent configuration. For autonomous bots, call them directly and sign the returned transactions with the bot's own Base wallet policy.