Documentation Index
Fetch the complete documentation index at: https://docs.chipipay.com/llms.txt
Use this file to discover all available pages before exploring further.
1. Get your API key
Go to dashboard.chipipay.com, create an org, and copy your API key from the Credentials page.2. Make your first call
3. Stream a response
For chatbots and real-time UIs, use the streaming endpoint — same request body, token-by-token delivery via SSE:4. Buy credits
AI calls debit from your org’s credit balance. Buy a credit pack (5 / 50 / $100) at dashboard.chipipay.com/configure/billing by sending USDC. $5 gets you ~50,000 calls withgpt-4o-mini or ~700 calls with haiku.
Auth
Two options — both work on all AI endpoints, no JWKS setup needed:| Method | Header | Best for |
|---|---|---|
| Secret key | Authorization: Bearer sk_prod_... | Server-side (backend, agent) |
| Public key | x-api-key: pk_prod_... | Client-side (browser, mobile) |
What you can build
| Use case | Endpoint | Cost |
|---|---|---|
| Chatbot / code assistant | POST /ai/chat | Per token |
| Real-time streaming UI | POST /ai/chat/stream | Per token |
| DeFi portfolio advisor | POST /ai/think | Per token |
| Swap execution | POST /ai/execute | $0.002/call |
| Token prices for wallets | GET /ai/prices | Free |
| Market signals for agents | GET /ai/signals | $0.0005/call |
Next
- Chat & Streaming — full request/response reference
- DeFi Intelligence — portfolio advisor + swap execution
- Prices & Data — 90 tokens, 11 chains, 60 currencies
- Models & Pricing — all models, providers, and rate limits
