USDC payment required for /api/v1/document-intelligence
USDC payment required for /api/v1/document-intelligence
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
agents.securelend.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3cf85B14A756F7E1bCD6cE0edD51F3d3DE1C4cAD",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"description": "Instant, accurate document sorting and classification for financial underwriting. Identifies and categorizes loan documents, financial statements, tax returns, and more.",
"iconUrl": "https://securelend.ai/images/icon-64.svg",
"info": {
"input": {
"body": {
"properties": {
"documentId": {
"type": "string"
},
"domain": {
"enum": [
"commercial_loan",
"reinsurance_treaty",
"equity_investment"
],
"type": "string"
}
},
"required": [
"documentId"
],
"type": "object"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"classification": "1120S Tax Return",
"confidence": 0.992,
"costCents": 60,
"pageCount": 10
},
"schema": {
"properties": {
"classification": {
"type": "string"
},
"confidence": {
"type": "number"
},
"costCents": {
"type": "number"
},
"pageCount": {
"type": "number"
}
},
"type": "object"
},
"type": "json"
}
},
"schema": {
"properties": {
"classification": {
"type": "string"
},
"confidence": {
"type": "number"
},
"costCents": {
"type": "number"
},
"pageCount": {
"type": "number"
}
},
"type": "object"
},
"serviceName": "SecureLend Underwriting Agents",
"tags": [
"document-classification",
"ocr",
"bedrock",
"domain-aware"
]
}
}Use it
curl
curl "https://agents.securelend.ai/api/v1/document-intelligence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agents.securelend.ai/api/v1/document-intelligence");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://agents.securelend.ai/api/v1/document-intelligence")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15421.json, and this resource appears in /discovery/resources and /discovery/search.