x402 List

x402 Protocol Service Directory

botsmith

Data PAYMENT-READY

payment-ready until 2026-08-16

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.

first settlement 2026-07-18 · $1.58 all-time · settled via coinbase

BASE URL https://x402.botsmith.dev WEBSITE https://x402.botsmith.dev ENDPOINTS 3 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-18 MONITORED SINCE 2026-07-18

ASSESSMENT

updated 3h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 98.7%
uptime 24h
0%
uptime 7d
88.9%
uptime 30d
98.7%
uptime 90d
98.7%
response p95
1090ms
avg response
662ms
total checks
1,987

Measured on the unpaid 402 handshake, not the paid call. A service can 402 correctly and still fail after payment.

compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.003 to $0.004 (p28 in Data)
price (min)
$0.003
price (max)
$0.004
category percentile (min)
p28 in Data
category percentile (max)
p9 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.

domain age
22d
registrar
CloudFlare, Inc.
hosting
custom
domain created
2026-07-17

Identity facts, not a risk score.

traction $1.579 30d · 31 buyers
volume 30d
$1.579
buyers 30d
31
settlements 30d
203
first settlement
2026-07-18
last settlement
2026-08-13
top buyer share
42% of 30d volume
trend 7d vs 30d
0.92x the 30d daily rate
networks
eip155:8453
volume all-time
$1.58
settlements all-time
203
median settlement 30d
$0.005
max settlement 30d
$0.05
settled via
coinbase ($1.58, 203 tx)

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-derived

No AI synthesis has been produced for this service yet.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET 402 CHANNEL
GET /dossier $0.004 Base USDC header
GET /onchain $0.004 Base USDC header
GET /read $0.003 Base USDC header
3 endpoints

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.

// request
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": "3000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 60
      },
      {
        "asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
        "extra": {
          "name": "USD₮0",
          "version": "1"
        },
        "payTo": "0xadd1a0a81836b1ea5b272dbed78746ba09f55370",
        "amount": "3000",
        "scheme": "exact",
        "network": "eip155:196",
        "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
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xcb9b3F94387389e38EF2A7b3C0B851FB8325d7e9",
        "amount": "4000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 60
      },
      {
        "asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
        "extra": {
          "name": "USD₮0",
          "version": "1"
        },
        "payTo": "0xadd1a0a81836b1ea5b272dbed78746ba09f55370",
        "amount": "4000",
        "scheme": "exact",
        "network": "eip155:196",
        "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
      },
      {
        "asset": "0x779ded0c9e1022225f8e0630b35a9b54be713736",
        "extra": {
          "name": "USD₮0",
          "version": "1"
        },
        "payTo": "0xadd1a0a81836b1ea5b272dbed78746ba09f55370",
        "amount": "4000",
        "scheme": "exact",
        "network": "eip155:196",
        "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
  }
]

OVER TIME

All charts use the 24h selector; each series spans only the dates it has data for. 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). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
08-13 · uptime 0.0%08-13 · uptime 0.0%08-1308-13
24h UPTIME 0%
RESPONSE TIME
no data
AVG RESP 662ms
PRICE (captured 402, USD)
08-12 · $0.00408-13 · $0.004$0.00408-1208-13

Median across 3 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
08-12 uptime: 98.8% compliance: 100% checks08-13 uptime: 98.7% compliance: 100% checksuptimecompliance08-1208-13

checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression

PILLARS OVER TIME (measured)

Measured site and economics pillars from the assessment history, so the latest value shown elsewhere on this page reads as a point on a trend rather than a permanent state.

VOLUME (on-chain settlement, USD)
building volume history (1 day so far)
DISTINCT BUYERS
building buyer history (1 day so far)

COMPLIANCE

14/14 checks pass · grade A

last 402 captured 2026-07-20 · last up 2026-08-09

  • 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
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (18) live · click to expand
TIME STATUS RESP CAUSE
○ DOWN 350ms bad_status: unexpected HTTP 404
○ DOWN 331ms bad_status: unexpected HTTP 404
○ DOWN 343ms bad_status: unexpected HTTP 404
○ DOWN 553ms bad_status: unexpected HTTP 404
○ DOWN 334ms bad_status: unexpected HTTP 404
○ DOWN 361ms bad_status: unexpected HTTP 404
○ DOWN 398ms bad_status: unexpected HTTP 404
○ DOWN 497ms bad_status: unexpected HTTP 404
○ DOWN 343ms bad_status: unexpected HTTP 404
○ DOWN 341ms bad_status: unexpected HTTP 404
○ DOWN 538ms bad_status: unexpected HTTP 404
○ DOWN 430ms bad_status: unexpected HTTP 404
○ DOWN 369ms bad_status: unexpected HTTP 404
○ DOWN 331ms bad_status: unexpected HTTP 404
○ DOWN 927ms bad_status: unexpected HTTP 404
○ DOWN 328ms bad_status: unexpected HTTP 404
○ DOWN 327ms bad_status: unexpected HTTP 404
○ DOWN 672ms bad_status: unexpected HTTP 404

EMBED THIS BADGE

Show that botsmith is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

botsmith listed on x402-list
status
botsmith uptime on x402-list
live uptime
// HTML
<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>
// Markdown
[![botsmith on x402-list](https://x402-list.com/badge/botsmith.svg)](https://x402-list.com/services/botsmith?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<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>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]

Earn the verified tier: x402list pays a real call to this endpoint and, if it delivers, the service is delivery-verified. The fee covers the cost of the probe, not the badge; there is no refund if the call does not deliver. Agent and API only, no in-browser signing. See /api.

[ verify this service ($0.25) ]

To request delisting, email info@x402-list.com or update your listing at /services/botsmith/update.