AgentClear — Agent Commerce Layer
Discover and call paid APIs with natural language. One API key, per-call billing, zero friction.
Setup
Requires AGENTCLEAR_API_KEY environment variable (starts with axk_).
CODEBLOCK0
Get a free key with $5 credits: https://agentclear.dev/login
Data & Privacy
- - Discovery queries are used for semantic matching and logged to power the Bounty Board (demand signals for missing services). No PII is collected.
- Proxy calls forward your payload to the upstream service provider you selected. AgentClear does not store request/response payloads — only billing metadata (service ID, timestamp, cost).
- API keys authenticate and meter usage. Keys are scoped to your account and can be revoked at any time.
- All traffic is over HTTPS. See https://agentclear.dev/security for full details.
Endpoints
Base URL: INLINECODE2
Discover Services
Find APIs by describing what you need:
CODEBLOCK1
Response returns ranked services with id, name, description, price_per_call, and trust_score.
Call a Service
Proxy a request through AgentClear (auto-billed per call):
CODEBLOCK2
The payload is forwarded to the upstream service. Response includes the service result plus billing metadata.
List Services
Browse available services:
CODEBLOCK3
Workflow
- 1. Discover — Describe what you need → get ranked service matches
- Evaluate — Check price, trust score, and description
- Call — Proxy the request → get result + pay per call
- If no service exists, check the Bounty Board at https://agentclear.dev/bounties
Pricing
- - Services range from $0.001 to $1+ per call (provider-set)
- Platform fee: 2.5%
- New accounts get $5 free credits
- Balance auto-deducts per call
Tips
- - Use specific, descriptive queries for better discovery results ("parse QuickBooks QBO files to JSON" beats "parse files")
- Chain services: discover → call → use result as input to another service
- If a discover query returns no results, the query is logged as demand on the Bounty Board — providers will build it
AgentClear — Agent Commerce Layer
通过自然语言发现并调用付费API。一个API密钥,按次计费,零摩擦。
设置
需要设置 AGENTCLEARAPIKEY 环境变量(以 axk_ 开头)。
bash
export AGENTCLEARAPIKEY=axkyourkey_here
获取免费密钥并获赠5美元额度:https://agentclear.dev/login
数据与隐私
- - 发现查询 用于语义匹配,并记录到悬赏板(缺失服务的需求信号)。不收集个人身份信息。
- 代理调用 将你的请求负载转发至所选的上游服务提供商。AgentClear 不存储请求/响应负载——仅记录计费元数据(服务ID、时间戳、费用)。
- API密钥 用于身份验证和用量计量。密钥绑定到你的账户,可随时撤销。
- 所有流量均通过HTTPS传输。完整详情请参阅 https://agentclear.dev/security。
端点
基础URL:https://agentclear.dev
发现服务
通过描述需求查找API:
bash
curl -X POST https://agentclear.dev/api/discover \
-H Authorization: Bearer $AGENTCLEAR
APIKEY \
-H Content-Type: application/json \
-d {query: parse invoices from PDF, limit: 5}
返回按相关性排序的服务列表,包含 id、name、description、pricepercall 和 trust_score。
调用服务
通过AgentClear代理请求(按次自动计费):
bash
curl -X POST https://agentclear.dev/api/proxy/{service_id} \
-H Authorization: Bearer $AGENTCLEAR
APIKEY \
-H Content-Type: application/json \
-d {your: payload}
请求负载被转发至上游服务。响应包含服务结果及计费元数据。
列出服务
浏览可用服务:
bash
curl https://agentclear.dev/api/services \
-H Authorization: Bearer $AGENTCLEAR
APIKEY
工作流程
- 1. 发现 — 描述需求 → 获取按相关性排序的服务匹配结果
- 评估 — 查看价格、信任评分和描述
- 调用 — 代理请求 → 获取结果 + 按次付费
- 若无匹配服务,请查看悬赏板:https://agentclear.dev/bounties
定价
- - 服务价格范围:每次调用 $0.001 至 $1+(由提供商设定)
- 平台费用:2.5%
- 新账户获赠 $5 免费额度
- 余额按次自动扣除
提示
- - 使用具体、描述性的查询以获得更好的发现结果(将QuickBooks QBO文件解析为JSON优于解析文件)
- 串联服务:发现 → 调用 → 将结果作为另一个服务的输入
- 若发现查询无结果,该查询将被记录为悬赏板上的需求信号——提供商会据此构建服务