x402 List

x402 Protocol Service Directory

AxonGate

Data

AxonGate is an x402-paid Clean Context Broker on Base. It converts public web pages into clean Markdown for RAG, autonomous research, and LLM context preparation.

Pay from $0.03 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

first settlement 2026-04-30 · $1.14 all-time · last settled 2026-06-18

BASE URL https://web-production-8136ee.up.railway.app WEBSITE https://web-production-8136ee.up.railway.app/manifest.json ENDPOINTS 1 NETWORK Base ASSET USDC MEMBER SINCE 2026-04-28 MONITORED SINCE 2026-04-28

ASSESSMENT

updated 1h ago

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

reliability 100%
uptime 24h
100%
uptime 7d
100%
uptime 30d
100%
uptime 90d
99.8%
response p95
1770ms
avg response
776ms
total checks
2,740
compliance A (14/14)

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

jump to compliance checklist

price $0.03 (p80 in Data)
price (min)
$0.03
category percentile (min)
p80 in Data
endpoints / prices
1 / 1
model
flat
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
-
registrar
-
hosting
free host
domain created
---

Identity facts, not a risk score.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
first settlement
2026-04-30
last settlement
2026-06-18
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453
volume all-time
$1.14
settlements all-time
18
median settlement 30d
$0
max settlement 30d
$0
settled via
-

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

Provides a paid evidence trust layer for AI agents on the Base network

category
ai-evidence
ai-evidencetrust-layercitationcontext

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
GET /v1/x402/access $0.03 Base USDC
1 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET /v1/x402/access returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://web-production-8136ee.up.railway.app/v1/x402/access'
// 402 response (captured by monitor) · 1 payload · click to expand
[
  {
    "error": "Payment Required. Use POST with PAYMENT-SIGNATURE and a JSON target_url body.",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "tier": "fresh",
          "price": "$0.03",
          "version": "2",
          "decimals": 6,
          "mimeType": "application/json",
          "resource": "https://api.axongate.one/v1/x402/access",
          "description": "Clean Web-to-Markdown context extraction for autonomous agents.",
          "checkoutConfidence": "https://api.axongate.one/checkout/confidence",
          "checkoutResumePattern": "https://api.axongate.one/checkout/{quote_id}",
          "quoteReceiptApiPattern": "https://api.axongate.one/v1/quotes/{quote_id}"
        },
        "payTo": "0xcD11393c8505C5A44F8b998E0c96BcC5698d76A7",
        "amount": "30000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.axongate.one/v1/x402/access",
      "mimeType": "application/json",
      "description": "AxonGate context endpoint: paid clean Markdown extraction supporting the source trust layer."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "tier": "fresh",
              "target_url": "https://example.com/source",
              "force_refresh": true
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "tier": "fresh",
              "cache": {
                "hit": false
              },
              "status": "success",
              "payment": {
                "mode": "x402-facilitator",
                "network": "eip155:8453",
                "amount_usdc": 0.03,
                "token_address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
                "vault_address": "0xcD11393c8505C5A44F8b998E0c96BcC5698d76A7"
              },
              "markdown": "# Example Domain\n\nExample clean markdown...",
              "target_url": "https://example.com/source",
              "ueg_receipt": {
                "revenue_usdc": 0.03,
                "projected_profit_usdc": 0.01
              }
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "target_url"
                  ],
                  "properties": {
                    "tier": {
                      "enum": [
                        "starter",
                        "cached",
                        "basic",
                        "fresh",
                        "deep"
                      ],
                      "type": "string",
                      "default": "fresh",
                      "description": "Payment tier. Standard x402 clients should also pass this as ?tier= or X-AxonGate-Tier so the challenge amount matches the request."
                    },
                    "target_url": {
                      "type": "string",
                      "format": "uri",
                      "description": "Absolute public HTTP/HTTPS URL to convert into clean markdown."
                    },
                    "force_refresh": {
                      "type": "boolean",
                      "default": false,
                      "description": "Bypass cache for cacheable tiers. Not supported for cached tier."
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST",
                    "PUT",
                    "PATCH"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "required": [
                    "status",
                    "target_url",
                    "tier",
                    "markdown",
                    "cache",
                    "payment",
                    "ueg_receipt"
                  ],
                  "properties": {
                    "tier": {
                      "type": "string"
                    },
                    "cache": {
                      "type": "object"
                    },
                    "status": {
                      "type": "string"
                    },
                    "payment": {
                      "type": "object"
                    },
                    "markdown": {
                      "type": "string"
                    },
                    "target_url": {
                      "type": "string"
                    },
                    "ueg_receipt": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "payment-identifier": {
        "info": {
          "required": false
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "required"
          ],
          "properties": {
            "id": {
              "type": "string",
              "pattern": "^[a-zA-Z0-9_-]+$",
              "maxLength": 128,
              "minLength": 16
            },
            "required": {
              "type": "boolean"
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts share the 30d window selected here. Every series is also served as JSON at /api/v1/services/axongate/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
06-29 · uptime 100.0% · 956ms avg06-30 · uptime 100.0% · 776ms avg07-01 · uptime 100.0% · 495ms avg07-02 · uptime 100.0% · 488ms avg07-03 · uptime 100.0% · 441ms avg07-04 · uptime 100.0% · 471ms avg07-05 · uptime 100.0% · 527ms avg07-06 · uptime 100.0% · 881ms avg07-07 · uptime 100.0% · 914ms avg07-08 · uptime 100.0% · 805ms avg07-09 · uptime 100.0% · 801ms avg07-10 · uptime 100.0% · 773ms avg07-11 · uptime 100.0% · 729ms avg07-12 · uptime 100.0% · 721ms avg07-13 · uptime 100.0% · 787ms avg07-14 · uptime 100.0% · 584ms avg07-15 · uptime 100.0% · 865ms avg07-16 · uptime 100.0% · 1014ms avg07-17 · uptime 100.0% · 707ms avg07-18 · uptime 100.0% · 722ms avg07-19 · uptime 100.0% · 645ms avg07-20 · uptime 100.0% · 780ms avg07-21 · uptime 100.0% · 935ms avg07-22 · uptime 100.0% · 802ms avg07-23 · uptime 100.0% · 879ms avg07-24 · uptime 100.0% · 870ms avg07-25 · uptime 100.0% · 747ms avg07-26 · uptime 100.0% · 1023ms avg07-27 · uptime 100.0% · 1153ms avg07-28 · uptime 100.0% · 1046ms avg06-2907-28
30d UPTIME 100%
RESPONSE TIME
06-29 · 956ms avg06-29 · 956ms avg06-30 · 776ms avg06-30 · 776ms avg07-01 · 495ms avg07-01 · 495ms avg07-02 · 488ms avg07-02 · 488ms avg07-03 · 441ms avg07-03 · 441ms avg07-04 · 471ms avg07-04 · 471ms avg07-05 · 527ms avg07-05 · 527ms avg07-06 · 881ms avg07-06 · 881ms avg07-07 · 914ms avg07-07 · 914ms avg07-08 · 805ms avg07-08 · 805ms avg07-09 · 801ms avg07-09 · 801ms avg07-10 · 773ms avg07-10 · 773ms avg07-11 · 729ms avg07-11 · 729ms avg07-12 · 721ms avg07-12 · 721ms avg07-13 · 787ms avg07-13 · 787ms avg07-14 · 584ms avg07-14 · 584ms avg07-15 · 865ms avg07-15 · 865ms avg07-16 · 1014ms avg07-16 · 1014ms avg07-17 · 707ms avg07-17 · 707ms avg07-18 · 722ms avg07-18 · 722ms avg07-19 · 645ms avg07-19 · 645ms avg07-20 · 780ms avg07-20 · 780ms avg07-21 · 935ms avg07-21 · 935ms avg07-22 · 802ms avg07-22 · 802ms avg07-23 · 879ms avg07-23 · 879ms avg07-24 · 870ms avg07-24 · 870ms avg07-25 · 747ms avg07-25 · 747ms avg07-26 · 1023ms avg07-26 · 1023ms avg07-27 · 1153ms avg07-27 · 1153ms avg07-28 · 1046ms avg07-28 · 1046ms avg06-2907-28
AVG RESP 777ms
PRICE (captured 402, USD)
06-28 · $0.0307-28 · $0.03$0.0306-2807-28
SUB-SCORES (uptime + x402 compliance)
07-13 uptime: 100.0% compliance: 92% checks07-14 uptime: 100.0% compliance: 92% checks07-15 uptime: 100.0% compliance: 92% checks07-16 uptime: 100.0% compliance: 92% checks07-17 uptime: 100.0% compliance: 100% checks07-18 uptime: 100.0% compliance: 100% checks07-19 uptime: 100.0% compliance: 100% checks07-20 uptime: 100.0% compliance: 100% checks07-21 uptime: 100.0% compliance: 100% checks07-22 uptime: 100.0% compliance: 100% checks07-23 uptime: 100.0% compliance: 100% checks07-24 uptime: 100.0% compliance: 100% checks07-25 uptime: 100.0% compliance: 100% checks07-26 uptime: 100.0% compliance: 100% checks07-27 uptime: 100.0% compliance: 100% checks07-28 uptime: 100.0% compliance: 100% checksuptimecompliance07-1307-28
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
no distinct buyers yet

COMPLIANCE

14/14 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
  • 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) · click to expand
TIME STATUS RESP
● SLOW 1201ms
● OK 646ms
● SLOW 1705ms
● OK 936ms
● OK 1138ms
● OK 1069ms
● OK 930ms
● OK 732ms
● OK 1106ms
● OK 939ms
● SLOW 1308ms
● SLOW 1171ms
● OK 696ms
● SLOW 1286ms
● OK 997ms
● OK 1082ms
● SLOW 1187ms
● SLOW 1565ms

EMBED THIS BADGE

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

AxonGate listed on x402-list
status
AxonGate uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/axongate?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/axongate.svg" alt="AxonGate listed on x402-list" height="28">
</a>
// Markdown
[![AxonGate on x402-list](https://x402-list.com/badge/axongate.svg)](https://x402-list.com/services/axongate?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/axongate?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/axongate.svg?data=uptime" alt="AxonGate 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 ]