Pay-per-call web and on-chain intelligence for AI agents, no API keys. read (URL to markdown), dossier (domain intelligence: DNS/SPF/DMARC/RDAP/TLS), onchain (EVM address due-diligence on Base/Ethereum/Optimism). USDC on Base via x402 v2, Bazaar discovery, MCP server.
Pay from $0.003 to $0.004 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 3h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- -
- uptime 7d
- -
- uptime 30d
- -
- uptime 90d
- -
- response p95
- 389ms
- avg response
- 389ms
- total checks
- 1
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $0.003 to $0.004 (p32 in Data)
- price (min)
- $0.003
- price (max)
- $0.004
- category percentile (min)
- p32 in Data
- category percentile (max)
- p11 in Data
- endpoints / prices
- 3 / 2
- model
- tiered
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $0 30d · 0 buyers
- volume 30d
- $0
- buyers 30d
- 0
- settlements 30d
- 0
- last settlement
- ---
- top buyer share
- -
- trend 7d vs 30d
- -
- networks
- eip155:8453
Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedProvides HTTP APIs for fetching web content, domain information, on-chain data, and risk assessments for packages and wallets.
- category
- data-aggregation
- in
- query params
- auth
- none
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| GET | /dossier | $0.004 | Base | USDC | |
| GET | /onchain | $0.004 | Base | USDC | |
| GET | /read | $0.003 | Base | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to GET /dossier returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i 'https://x402.botsmith.dev/dossier'
// 402 response (captured by monitor) · 3 payloads · click to expand
[
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
"amount": "4000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 60
}
],
"resource": {
"url": "https://x402.botsmith.dev/dossier",
"tags": [
"domain",
"dns",
"whois",
"rdap",
"tls",
"security",
"intel"
],
"mimeType": "application/json",
"description": "Domain Dossier ($0.004/call): Full domain dossier in one call: DNS records (A/AAAA/NS/MX/TXT/CNAME), email security posture (SPF, DMARC policy), RDAP registration data (registrar, age, expiry) and live TLS certificate details. Replaces four separate lookups.",
"serviceName": "botsmith"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"domain": "example.com"
}
},
"output": {
"type": "json",
"example": {
"dns": {
"a": [
"23.192.228.80"
],
"mx": [],
"ns": [
"a.iana-servers.net",
"b.iana-servers.net"
],
"txt": [
"v=spf1 -all"
],
"aaaa": [
"2600:1406:3a00:21::173e:2e65"
],
"cname": null
},
"tls": {
"issuer": "DigiCert Inc",
"subject": "*.example.com",
"validTo": "2026-01-15T23:59:59.000Z",
"altNames": [
"*.example.com",
"example.com"
],
"validFrom": "2025-01-15T00:00:00.000Z",
"daysUntilExpiry": 184
},
"email": {
"spf": "v=spf1 -all",
"dmarc": null,
"hasMx": false,
"dmarcPolicy": null
},
"domain": "example.com",
"registration": {
"status": [
"client delete prohibited",
"client transfer prohibited"
],
"ageDays": 11292,
"createdAt": "1995-08-14T04:00:00Z",
"expiresAt": "2026-08-13T04:00:00Z",
"registrar": "RESERVED-Internet Assigned Numbers Authority",
"updatedAt": "2024-08-14T07:01:34Z"
}
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"domain"
],
"properties": {
"domain": {
"type": "string",
"pattern": "^([a-zA-Z0-9]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\\.)+[a-zA-Z]{2,63}$",
"maxLength": 253,
"description": "Domain to investigate, e.g. example.com"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"domain",
"dns",
"email",
"registration",
"tls"
],
"properties": {
"dns": {
"anyOf": [
{
"type": "object",
"required": [
"a",
"aaaa",
"ns",
"mx",
"txt",
"cname"
],
"properties": {
"a": {
"type": "array",
"items": {
"type": "string"
}
},
"mx": {
"type": "array",
"items": {
"type": "object",
"required": [
"exchange",
"priority"
],
"properties": {
"exchange": {
"type": "string"
},
"priority": {
"type": "number"
}
},
"additionalProperties": false
}
},
"ns": {
"type": "array",
"items": {
"type": "string"
}
},
"txt": {
"type": "array",
"items": {
"type": "string"
}
},
"aaaa": {
"type": "array",
"items": {
"type": "string"
}
},
"cname": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
{
"type": "null"
}
],
"description": "null when the domain does not resolve at all"
},
"tls": {
"anyOf": [
{
"type": "object",
"required": [
"issuer",
"subject",
"validFrom",
"validTo",
"daysUntilExpiry",
"altNames"
],
"properties": {
"issuer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"subject": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"validTo": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"altNames": {
"type": "array",
"items": {
"type": "string"
}
},
"validFrom": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"daysUntilExpiry": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
{
"type": "null"
}
],
"description": "Certificate served on :443; null when nothing listens there"
},
"email": {
"type": "object",
"required": [
"spf",
"dmarc",
"dmarcPolicy",
"hasMx"
],
"properties": {
"spf": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"dmarc": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"hasMx": {
"type": "boolean"
},
"dmarcPolicy": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"domain": {
"type": "string"
},
"registration": {
"anyOf": [
{
"type": "object",
"required": [
"registrar",
"createdAt",
"updatedAt",
"expiresAt",
"status",
"ageDays"
],
"properties": {
"status": {
"type": "array",
"items": {
"type": "string"
}
},
"ageDays": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"createdAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"expiresAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"registrar": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"updatedAt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
{
"type": "null"
}
],
"description": "RDAP registration data; null when the registry exposes none"
}
},
"additionalProperties": false
}
}
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
"amount": "4000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 60
}
],
"resource": {
"url": "https://x402.botsmith.dev/onchain",
"tags": [
"crypto",
"onchain",
"evm",
"base",
"ethereum",
"security",
"intel",
"due-diligence"
],
"mimeType": "application/json",
"description": "Onchain Address Intel ($0.004/call): On-chain intel for any EVM address in one call: contract-or-wallet, native balance, scam/reputation flags, transaction and transfer counts, ENS name, and for contracts the verification status, name, proxy type and deployer. Base, Ethereum and Optimism. Ideal for agent due-diligence before interacting with an address.",
"serviceName": "botsmith"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"chain": "base",
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}
},
"output": {
"type": "json",
"example": {
"risk": {
"isScam": false,
"reputation": "ok"
},
"type": "contract",
"chain": "base",
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"ensName": null,
"activity": {
"txCount": 0,
"transferCount": 0
},
"contract": {
"name": "USD Coin",
"token": {
"name": "USD Coin",
"type": "ERC-20",
"symbol": "USDC"
},
"proxyType": "eip1967",
"creationTx": "0x2c1a9f...",
"isVerified": true,
"creatorAddress": "0x5a52e96bacdabb82fd05763e25335261b270efcb"
},
"topTokens": [],
"nativeBalance": "0"
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"address",
"chain"
],
"properties": {
"chain": {
"enum": [
"base",
"ethereum",
"optimism"
],
"type": "string",
"default": "base",
"description": "Which chain to look up (default base)"
},
"address": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$",
"description": "EVM address to investigate"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"address",
"chain",
"type",
"nativeBalance",
"ensName",
"risk",
"activity",
"contract",
"topTokens"
],
"properties": {
"risk": {
"type": "object",
"required": [
"isScam",
"reputation"
],
"properties": {
"isScam": {
"type": "boolean",
"description": "Flagged as a scam by the explorer"
},
"reputation": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"type": {
"enum": [
"contract",
"eoa"
],
"type": "string"
},
"chain": {
"type": "string"
},
"address": {
"type": "string"
},
"ensName": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"activity": {
"type": "object",
"required": [
"txCount",
"transferCount"
],
"properties": {
"txCount": {
"anyOf": [
{
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991
},
{
"type": "null"
}
]
},
"transferCount": {
"anyOf": [
{
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"contract": {
"anyOf": [
{
"type": "object",
"required": [
"isVerified",
"name",
"proxyType",
"creatorAddress",
"creationTx",
"token"
],
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"token": {
"anyOf": [
{
"type": "object",
"required": [
"symbol",
"name",
"type"
],
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"symbol": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
{
"type": "null"
}
]
},
"proxyType": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"creationTx": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"isVerified": {
"type": "boolean"
},
"creatorAddress": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
{
"type": "null"
}
],
"description": "null for externally-owned accounts"
},
"topTokens": {
"type": "array",
"items": {
"type": "object",
"required": [
"symbol",
"name",
"balance",
"decimals"
],
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"symbol": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"balance": {
"type": "string"
},
"decimals": {
"anyOf": [
{
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
}
},
"nativeBalance": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "Native coin balance in wei"
}
},
"additionalProperties": false
}
}
}
}
}
}
},
"x402Version": 2
},
{
"error": "Payment required",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
"amount": "3000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 60
}
],
"resource": {
"url": "https://x402.botsmith.dev/read",
"tags": [
"web",
"scraping",
"markdown",
"content",
"reader"
],
"mimeType": "application/json",
"description": "Web Reader ($0.003/call): Fetch any public web page and return its main content as clean, boilerplate-free markdown (reader mode for agents). Handles redirects, strips nav/ads/scripts, reports title, byline, language and word count.",
"serviceName": "botsmith"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"type": "http",
"method": "GET",
"queryParams": {
"url": "https://en.wikipedia.org/wiki/HTTP_402"
}
},
"output": {
"type": "json",
"example": {
"url": "https://en.wikipedia.org/wiki/HTTP_402",
"lang": "en",
"title": "HTTP 402",
"byline": null,
"excerpt": "HTTP 402 Payment Required is a client error response status code...",
"markdown": "# HTTP 402\n\n**HTTP 402 Payment Required** is a client error response status code...",
"siteName": "Wikipedia",
"wordCount": 412
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method"
],
"properties": {
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Public http(s) URL of the page to read"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object",
"required": [
"url",
"title",
"byline",
"siteName",
"lang",
"excerpt",
"markdown",
"wordCount"
],
"properties": {
"url": {
"type": "string",
"description": "Final URL after redirects"
},
"lang": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"byline": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"excerpt": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"markdown": {
"type": "string",
"description": "Boilerplate-free page content as GitHub-flavored markdown"
},
"siteName": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"wordCount": {
"type": "integer",
"maximum": 9007199254740991,
"minimum": -9007199254740991
}
},
"additionalProperties": false
}
}
}
}
}
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 30d window selected here. Every series is also served as JSON at /api/v1/services/botsmith/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
Median across 3 endpoints. Use the selector to isolate one.
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/botsmith?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/botsmith.svg" alt="botsmith listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/botsmith?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/botsmith?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/botsmith.svg?data=uptime" alt="botsmith uptime on x402-list" height="28"> </a>