LogoAPIMUX
LogoAPIMUX

Getting Started

Getting StartedAuthenticationErrorsRate LimitsFor Agents

Other

PricingFAQ
X (Twitter)

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

  1. Get your API key: Create one at /settings/apikeys
  2. Explore the API: Browse capabilities at /settings/api-docs
  3. 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

  1. Install the CLI:
curl -fsSL https://github.com/reorc/apimux-cli/releases/latest/download/install.sh | sh
  1. Authenticate:
apimux auth login
  1. Start using capabilities:
apimux schema capabilities
apimux amazon get_product --asin B0CM5JV26D --market US

See 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_product

Or 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

Table of Contents

What is APIMUX?
Quick start
For developers
For AI agents
Documentation structure
How it works
Next steps