AGENTUTIL
PrinciplesWhy AgentUtil
I

One Pattern

POST to create a task. GET to poll. Every tool, every time. Your agent learns one flow and it works everywhere. No special cases.

II

Honest Pricing

x402 micropayments — your agent pays per request with USDC on Base. No accounts, no subscriptions, no minimums. See the price, pay the price.

III

Machine-First

Every input and output has a JSON schema. Errors are structured with clear codes. No ambiguity, no HTML error pages, no guessing.

How It Works

How it works

01

Pick a tool

Browse /v1/tools or check the docs. Each tool has a clear purpose and schema.

02

POST your request

Send your input with x402 payment or API key. You'll get a task_id and poll_url.

03

Poll for result

Use the poll_url to check status. No additional auth needed. Results are structured and predictable.

Exhibit A
Same pattern, every tool.
1. Create task
POST /v1/tools/email.verify/tasks
{"email": "user@example.com"}

2. Poll result
GET /v1/tasks/task_abc123

{
  "status": "complete",
  "result": {
    "deliverable": true,
    "quality_score": 0.95,
    "is_disposable": false
  }
}
Pricing

Pricing

Preferred

USDC payments via x402

It’s not as complicated as it sounds.

  • +No sign up
  • +Pay per request
  • +Fully anonymous — all we know is your wallet ID
Learn how →
Alternative

API Key

If you must. Sign up with an email address and get an API_TOKEN. Fund with a Stripe payment link.

Get API Key →