Skip to main content
Glama

AgentBridge — Machine Commerce for China-Facing AI Agents

x402 Protocol Network Status

The internet was built for humans. APIs were built for software. But AI agents need something different: a way to discover, pay for, and consume digital capabilities autonomously.

AgentBridge is an experiment toward that future — building machine commerce infrastructure where AI agents can access specialized digital capabilities without accounts, subscriptions, or human intervention.


Not affiliated with other projects named "AgentBridge" ...

AgentBridge lets AI agents discover, purchase, and consume machine-readable digital capabilities related to China — through standardized APIs and x402 payments settled in USDC on Base. No API keys, no subscriptions, no account setup: an agent pays per call and gets a result.

Built on the x402 protocol, now stewarded by the Linux Foundation's x402 Foundation (members include AWS, Google, Visa, and Coinbase).


What It Provides

Capabilities are organized into two categories. Check which one you need before calling — they differ in speed, cost, and what kind of answer you get.

🔹 raw-content — unverified, machine-fetched, cheap

Fast, unreviewed raw content, priced in fractions of a cent. Use this when you just need to read what's currently published at a specific URL, as-is.

Reliability note: this returns the raw content as currently published at the source, at the moment of the fetch — unverified and not human-reviewed. If the source changes or is wrong, the result reflects that.

Capability

Endpoint

What it does

Price

Web Fetch

POST /v1/fetch/dynamic

Converts a Chinese webpage (Xiaohongshu, Zhihu, etc.) into clean Markdown/HTML. Handles JS rendering, anti-bot pages, and messy HTML that's normally hard for an agent to parse directly.

$0.003 (static) / $0.008 (dynamic)

🔸 verified-analysis — human-authored, decision-grade

Slower to produce, priced higher, includes original comparative judgment — not just extracted facts. Use this when the task needs an answer you can act on, not just raw data.

Capability

Endpoint

What it does

Price

University Employment Reports

POST /v1/reports/employment/{school_id}

Human-authored deep-dive analysis of a Chinese university's officially published 2025 graduate employment report.

90 USDC/report

University Teaching-Quality Reports

POST /v1/reports/teaching/{college_id}/{dimension}

Same, for officially published teaching-quality reports, across 8 fixed analytical dimensions per institution.

90 USDC/dimension

"15th Five-Year Plan" Strategic Notes

POST /v1/notes/15-5-package

Human-authored analysis of China's 2026–2030 national plan as it relates to college application decisions. 41 articles.

90 USDC/package

Free full-length samples (not excerpts) for all verified-analysis products, plus the live, continuously updated catalog of available schools/colleges, are at the storefront.

More capabilities in both categories are added over time. The category a capability belongs to tells you what to expect from it — the list of specific products will keep growing.


Related MCP server: hyperd-mcp

How It Works

  1. Agent discovers the service via /openapi.json, /llms.txt, or an x402 registry (see Status below).

  2. Agent calls an endpoint without payment → gets 402 Payment Required with an x402 payment challenge.

  3. Agent pays in USDC on Base, retries with the payment header.

  4. Server verifies the payment against Coinbase's CDP facilitator, executes the request, and returns the result.

No API keys. No subscriptions. No account registration required for x402 payments.


When to Use Which

If the task is...

Use

Why

"Get the current Zhihu Hot List / trending topics"

raw-content

You just need what's on the page right now, no judgment needed on it.

"Summarize what's currently on this Xiaohongshu post"

raw-content

Raw extraction of existing published content.

"Analyze the employment quality of a specific Chinese university"

verified-analysis

Requires comparative judgment, benchmarking against peer institutions, and interpretation — not just numbers off a page.

"Should a student choose College A over College B based on teaching quality?"

verified-analysis

A decision-grade answer, not a data dump.


Quickstart for Agent Developers

# Calling the raw-content fetch endpoint (returns 402 if unpaid)
curl -i -X POST https://api.060504.shop/v1/fetch/dynamic \
  -H "Content-Type: application/json" \
  -d '{"url": "https://www.zhihu.com/question/xxx"}'

An unpaid call returns 402 Payment Required with the payment challenge in the PAYMENT-REQUIRED response header (base64-encoded x402 v2 object). Decode it, pay the required amount in USDC on Base, and retry the request with your X-Payment header set to the signed payment payload — see the x402 specification for the full handshake, or the full OpenAPI spec for this service's exact schemas.

import requests

url = "https://api.060504.shop/v1/fetch/dynamic"
payload = {"url": "https://www.zhihu.com/question/xxx"}

res = requests.post(url, json=payload)
if res.status_code == 402:
    payment_required = res.headers.get("PAYMENT-REQUIRED")  # base64-encoded x402 v2 challenge
    # decode it, sign and settle payment with your Base/USDC wallet per the x402 spec,
    # then retry the POST with an X-Payment header carrying the signed payload

Agent Integration

AgentBridge Atlas is designed for the emerging agent economy.

AI agents can discover and consume Atlas capabilities through machine-readable interfaces.

Supported integration layers:

  • OpenAPI — standard API access

  • x402 — machine-native payments with USDC on Base

  • MCP — agent tool integration

  • Agent discovery metadata — machine-readable identity

Resources:

  • Agent discovery: .well-known/agent.json

  • MCP adapter: /mcp

  • Claude Desktop example: /examples/claude_desktop_config.json

The goal is to make AgentBridge Atlas discoverable and usable by autonomous AI agents and agent frameworks.

Status

  • ✅ Live API: https://api.060504.shop

  • ✅ Listed on 402 Index

  • ✅ Discoverable via /.well-known/agent.json (ReqCast-compatible)

  • ✅ On-chain payment history is fully public and verifiable: view on BaseScan


Writing / Background


Two categories, one platform: raw web content and human-authored analysis, both discoverable and payable the same way.

F
license - not found
-
quality - not tested
A
maintenance

Maintenance

Maintainers
16hResponse time
Release cycle
1Releases (12mo)
Commit activity
Issues opened vs closed

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Pay-per-use weather, environment, finance, and on-chain intelligence tools for AI agents via x402.

  • 30 pay-per-call APIs for AI agents: compliance, trade, safety, web, data. USDC on Base via x402.

  • Pay-per-call data tools for AI agents: crypto signal, web reader, SEO audit. x402 USDC on Base.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/tianzizhiming-svg/agentbridge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server