POST /api/scan — agent-readiness scan for a domain (~$0
POST /api/scan — agent-readiness scan for a domain (~$0.01 USDC per call)
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
www.getbags.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x25955C4A690E13F8A5De0cE3Fda34163f01F88e8",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bags-resource-metadata": {
"iconUrl": "https://www.getbags.app/baglogo.png",
"serviceName": "AI Score paid scan",
"tags": [
"payments",
"usdc",
"agentic"
]
},
"bazaar": {
"info": {
"input": {
"body": {
"customFieldValues": {},
"url": "https://example.com"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"description": "POST /api/scan — agent-readiness scan for a domain (~$0.01 USDC per call)",
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"customFieldValues": {
"description": "Buyer answers for this link's custom checkout fields",
"properties": {
"scan_result": {
"description": "Scan result",
"type": "string"
}
},
"type": "object"
},
"customerEmail": {
"description": "Optional buyer email for the receipt/customer record",
"type": "string"
},
"customerName": {
"description": "Optional buyer name",
"type": "string"
},
"url": {
"description": "Site URL or domain to scan for agent readiness",
"type": "string"
}
},
"required": [
"url"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://www.getbags.app/api/agent/link/pl-90ce47d5-ccb1-48c3-8388-379b07517b5c" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://www.getbags.app/api/agent/link/pl-90ce47d5-ccb1-48c3-8388-379b07517b5c");
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://www.getbags.app/api/agent/link/pl-90ce47d5-ccb1-48c3-8388-379b07517b5c")
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/683.json, and this resource appears in /discovery/resources and /discovery/search.