Getting Started
Start using APIMUX to access data capabilities through a unified API and CLI.
What is APIMUX?
APIMUX provides unified access to data capabilities across multiple sources—Amazon, TikTok, Google Trends, Meta Ads, and more—through a single API and CLI.
Quick start
For developers
- Get your API key: Create one at
/settings/apikeys - Explore the API: Browse capabilities at
/settings/api-docs - Make your first request:
curl -X POST https://api.apimux.com/v1/capabilities/amazon.get_product \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"asin": "B0CM5JV26D", "market": "US"}'For AI agents
- Install the CLI:
curl -fsSL https://github.com/reorc/apimux-cli/releases/latest/download/install.sh | sh- Authenticate:
apimux auth login- Start using capabilities:
apimux schema capabilities
apimux amazon get_product --asin B0CM5JV26D --market USSee the For Agents guide for detailed setup.
Documentation structure
- API Reference (
/settings/api-docs): Complete endpoint documentation with live examples - Guides (this section): Onboarding, authentication, error handling, and best practices
- CLI: Terminal-first workflows for automation and agents
How it works
APIMUX uses a unified execution model:
POST /v1/capabilities/{capability}All capabilities follow this pattern. Check the schema before calling:
apimux schema show amazon.get_productOr explore interactively in the API Reference.
Next steps
- Authentication — Set up API keys and secure access
- For Agents — Quick setup for AI agents
- Errors — Handle failures and retry logic
- Rate Limits — Design resilient clients
APIMUX