Connect any API in
30 seconds.

Browse popular APIs. Click Connect. Add your credentials. Start calling via proxy. No backend required.

# API Marketplace Connect any API in 30 seconds. Browse popular APIs, click Connect, and start calling. The marketplace is a curated catalog of popular APIs with pre-filled configuration. Select an API, add your credentials, and get a connection ready for proxy calls. ## How It Works 1. Browse — find the API you need by category or search 2. Connect — click Connect, provide your API key or token 3. Call — use /proxy/{connection_id}/... to call any endpoint Your credentials are encrypted with AES-GCM-256 and never exposed in responses. ## Available APIs ### AI & Machine Learning
APIBase URLAuthDescription
OpenAIhttps://api.openai.comBearerGPT-4o, DALL-E, Whisper, Embeddings
Anthropichttps://api.anthropic.comAPI KeyClaude, Messages API
HuggingFacehttps://api-inference.huggingface.coBearerInference API for any model
### Payments
APIBase URLAuthDescription
Stripehttps://api.stripe.comBearerPayments, subscriptions, invoices
### Communication
APIBase URLAuthDescription
Slackhttps://slack.com/apiBearerMessages, channels, users
Twiliohttps://api.twilio.comBasicSMS, voice, messaging
SendGridhttps://api.sendgrid.comBearerTransactional email
Resendhttps://api.resend.comBearerDeveloper-first email API
Discordhttps://discord.com/api/v10Bearer (Bot)Messages, guilds, webhooks
### Data & Productivity
APIBase URLAuthDescription
Notionhttps://api.notion.comBearerPages, databases, blocks
Airtablehttps://api.airtable.comBearerSpreadsheet-database hybrid
Google Sheetshttps://sheets.googleapis.comBearer (OAuth)Read/write spreadsheets
Supabasehttps://{project}.supabase.coAPI KeyPostgres, auth, storage
PlanetScalehttps://api.planetscale.comBearerServerless MySQL
### Developer Tools
APIBase URLAuthDescription
GitHubhttps://api.github.comBearerRepos, issues, PRs, actions
Shopifyhttps://{store}.myshopify.com/admin/api/2024-01API KeyProducts, orders, customers
## Quick Connect Examples ### OpenAI
bash curl -X POST https://api.liteio.dev/connections \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{ "name": "OpenAI", "base_url": "https://api.openai.com", "auth_type": "bearer", "auth_config": {"token": "sk-proj-..."} }' # Call GPT-4o curl -X POST https://api.liteio.dev/proxy/cn_.../v1/chat/completions \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}'
### Stripe
bash curl -X POST https://api.liteio.dev/connections \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{ "name": "Stripe", "base_url": "https://api.stripe.com", "auth_type": "bearer", "auth_config": {"token": "sk_live_..."} }' # List customers curl https://api.liteio.dev/proxy/cn_.../v1/customers?limit=10 \ -H "Authorization: Bearer $TOKEN"
### GitHub
bash curl -X POST https://api.liteio.dev/connections \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{ "name": "GitHub", "base_url": "https://api.github.com", "auth_type": "bearer", "auth_config": {"token": "ghp_..."} }' # List repos curl https://api.liteio.dev/proxy/cn_.../user/repos \ -H "Authorization: Bearer $TOKEN"
## Auth Types
TypeConfigHeader Injected
bearer{"token": "..."}Authorization: Bearer {token}
api_key{"key": "...", "header": "X-API-Key"}{header}: {key}
basic{"username": "...", "password": "..."}Authorization: Basic base64(user:pass)
oauth2_token{"access_token": "..."}Authorization: Bearer {access_token}
none{}No auth header
## Links - Developer Guide — Full API docs and code examples - Architecture — How credential encryption works - MCP Tools — Connect your AI agent