Store your API credentials once. Call any endpoint through the proxy. We inject auth headers and stream the response. Your frontend code never touches a secret.
Any REST API OpenAI, Stripe, GitHub, Slack, or your own
Credentials encrypted decrypted only at call time, then deleted
Connect Claude or ChatGPT via MCP. Upload a spreadsheet, then ask questions in English. Your AI agent can also call any connected API from the conversation.
Works with Claude Settings → Integrations → Add connector
Works with ChatGPT Settings → Connected apps → Add by URL
claude.ai
What are the top-rated electronics under $100?
Querying your products dataset: ?category=electronics&price:lt=100&sort=-rating
# APIYour data. Your APIs. No backend.
Upload a spreadsheet and get a live API with filtering, search, and pagination. Connect any REST API and call it through a proxy that manages your credentials. Give your AI agent access to both.
## Upload Data
9 filter operators, multi-field sort, full-text search, pagination, introspection, and export. All from query parameters.
## Connect Any API
bash
# Store credentials once
curl -X POST api.liteio.dev/connections \
-H "Authorization: Bearer $TOKEN" \
-d '{"name":"OpenAI","base_url":"https://api.openai.com","auth_type":"bearer","auth_config":{"token":"sk-proj-..."}}'
# → {"id":"cn_a8f3e1b2"}
# Call through proxy (credentials injected automatically)
curl api.liteio.dev/proxy/cn_a8f3e1b2/v1/models \
-H "Authorization: Bearer $TOKEN"
# → {"data":[{"id":"gpt-4o"}, ...]}
Works with any REST API: OpenAI, Stripe, GitHub, Slack, Notion, or your own. Bearer, API key, basic auth, OAuth2. Your client code never touches a credential.
Browse pre-configured APIs at /marketplace.
## AI Integration
Connect Claude or ChatGPT via MCP. Your AI agent queries your data and calls your APIs directly from the conversation.
Claude.ai: Settings > Integrations > Add custom connector > https://api.liteio.dev/mcpChatGPT: Settings > Connected apps > Add by URL > https://api.liteio.dev/mcp## Links- API Reference: Full endpoint documentation- Developer Guide: Quickstart and code examples- Marketplace: Browse popular APIs- Architecture: How it works