Install
openclaw skills install agentclearDiscover, call, and pay for APIs through AgentClear — the commerce layer for AI agents. Use when you need to: (1) find an API or tool by describing what you...
openclaw skills install agentclearDiscover and call paid APIs with natural language. One API key, per-call billing, zero friction.
Requires AGENTCLEAR_API_KEY environment variable (starts with axk_).
export AGENTCLEAR_API_KEY="axk_your_key_here"
Get a free key with $5 credits: https://agentclear.dev/login
Base URL: https://agentclear.dev
Find APIs by describing what you need:
curl -X POST https://agentclear.dev/api/discover \
-H "Authorization: Bearer $AGENTCLEAR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "parse invoices from PDF", "limit": 5}'
Response returns ranked services with id, name, description, price_per_call, and trust_score.
Proxy a request through AgentClear (auto-billed per call):
curl -X POST https://agentclear.dev/api/proxy/{service_id} \
-H "Authorization: Bearer $AGENTCLEAR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"your": "payload"}'
The payload is forwarded to the upstream service. Response includes the service result plus billing metadata.
Browse available services:
curl https://agentclear.dev/api/services \
-H "Authorization: Bearer $AGENTCLEAR_API_KEY"