mirrored listing x402 eip155:8453

Browse ERC-8004 registered AI agents on Base

Browse ERC-8004 registered AI agents on Base. Filter by x402 payment support.

Do you run agent.memoryapi.org? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-01
updated

Provider

agent.memoryapi.org · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x24FAcafEB49b4e3FACF0B3e69604A2F4640c9bf2",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "description": "Browse the ERC-8004 agent registry on Base mainnet. Scan agents by token ID range, optionally filtering to only those with x402 micropayment support.",
      "iconUrl": "https://memoryapi.org/icon.png",
      "input": {
        "method": "GET",
        "queryParams": {
          "limit": "20",
          "start_id": "1",
          "x402only": "false"
        },
        "schema": {
          "properties": {
            "limit": {
              "description": "Number of agents to scan (max 50)",
              "type": "integer"
            },
            "start_id": {
              "description": "Starting token ID",
              "type": "integer"
            },
            "x402only": {
              "description": "Only return agents with x402Support: true",
              "type": "boolean"
            }
          },
          "required": []
        },
        "type": "http"
      },
      "output": {
        "example": {
          "agents": [
            {
              "active": true,
              "agent_id": 1,
              "name": "Example Agent",
              "services_count": 5,
              "x402_support": true
            }
          ],
          "success": true,
          "total_scanned": 20,
          "x402_enabled_count": 3
        }
      },
      "serviceName": "MemoryAPI ERC8004",
      "tags": [
        "agents",
        "identity",
        "blockchain"
      ]
    },
    "schema": {
      "properties": {
        "input": {
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            }
          },
          "required": [
            "method"
          ]
        }
      }
    }
  }
}

Use it

curl

curl "https://agent.memoryapi.org/x402/erc8004/browse"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://agent.memoryapi.org/x402/erc8004/browse");
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://agent.memoryapi.org/x402/erc8004/browse")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/14166.json, and this resource appears in /discovery/resources and /discovery/search.