For Agents
Quick setup guide for AI agents using APIMUX.
Why APIMUX for agents
APIMUX provides AI agents with structured access to data capabilities through a simple CLI. No API wrappers to maintain—just install, authenticate, and call capabilities.
Setup (3 steps)
1. Install the CLI
curl -fsSL https://github.com/reorc/apimux-cli/releases/latest/download/install.sh | sh2. Authenticate
Browser-assisted (recommended):
apimux auth loginOr use an API key for non-interactive environments:
export APIMUX_API_KEY=your_api_key_hereOr configure interactively:
apimux config init3. Verify
apimux version
apimux schema capabilitiesAgent prompt template
Copy this to help your agent get started:
APIMUX provides data capabilities through a CLI.
Setup:
1. Install: curl -fsSL https://github.com/reorc/apimux-cli/releases/latest/download/install.sh | sh
2. Authenticate: Run `apimux auth login` or set APIMUX_API_KEY
3. Verify: Run `apimux schema capabilities`
Usage:
- Check schema first: `apimux schema show <capability>`
- Execute: `apimux amazon get_product --asin B0CM5JV26D --market US`
- All capabilities follow the same pattern
Always check the schema before calling to understand required parameters.What's coming
We're working on streamlined skills installation for agent runtimes. The CLI provides the most reliable path today.
APIMUX