Run Document extraction.
API Acre verifies the exact x402 price, Base network, recipient, and request before any wallet opens. One successful call costs $0.01 USDC.
API Acre never receives your private key; signing stays inside your wallet.
1 · Connect for one call
- Network
- Recipient
- USDC contract
No ETH gas needed. Connecting does not sign or pay. Coinbase Wallet supports desktop QR and mobile handoff without a browser extension. This EIP-3009 payment needs only the displayed USDC on Base—not ETH for gas—because the facilitator submits settlement. Reject any later prompt that differs from the verified amount or recipient.
See the result before connecting · Curated static example
Document extraction returns structured JSON. This example is static; the paid call returns a fresh result and settlement receipt.
{
"request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a",
"service": "document.extract",
"version": "1",
"data": {
"text": "Hello world",
"characters": 11,
"words": 2,
"metadata": {
"filename": "report.txt",
"bytes": 11,
"sha256": "64ec88ca00b268e5ba1a35678a1b5316d212f4f366b2477232534a8aeca37f3c"
}
},
"meta": {
"duration_ms": 42,
"cached": false,
"sources": [],
"warnings": [],
"next_actions": [
{
"service": "document.redact",
"title": "PII and personal-data redaction",
"reason": "Remove common personal-data patterns from the extracted text before reuse.",
"method": "POST",
"path": "/v1/document/redact",
"price": "$0.01",
"input_template": {
"text": "$result.data.text"
},
"use_output": "Use result.data.text as the redacted document and inspect the returned counts.",
"authorization_required": true
}
]
}
}Review exact request JSON
2 · Authorize one call
Connected wallet:
Signing authorizes only the verified amount and recipient for this request. Reject the wallet prompt if anything differs.
Result
Settlement receipt
Change the request (optional)
The default request is verified automatically. Editing it invalidates the quote and requires this no-payment verification again.
Browser checkout requires an EVM wallet with USDC on Base. For agents and automated clients, use the official x402 SDK examples.