# x402 Ecosystem Service Map

> x402 Ecosystem Service Map is a paid API for AI agents from x402.dailyelo.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a machine-readable map of all x402 services on Base, including price ranges, categories, endpoint counts, and live health/latency per service, with filtering and sorting options.

## Facts

- Endpoint: GET https://x402.dailyelo.com/v1/ecosystem/services
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-ecosystem-service-map-8c70f353
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ha9mFdRDOZEbkO43FJEHL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402-ecosystem-service-map-8c70f353
```

Example prompt: Show me all healthy AI-category x402 services on Base sorted by latency, up to 50 results — I want to see which ones are live and fast right now.

## When to prefer this

Use this endpoint when you need a comprehensive, up-to-date catalog of x402 services on Base without scanning the Bazaar yourself. Prefer this over manual discovery when you need to filter by category, health, or price, or when you want to detect newly launched services using the since parameter.

## Known failure modes

- Invalid sort parameter returns 400 error
- Invalid health filter value returns 400 error
- No services match the given filters returns empty list
- since parameter with invalid unix timestamp returns 400 error
- Limit exceeding 1000 may be capped or rejected

## How this service works

Machine-readable map of the x402 service ecosystem on Base: price range, category, endpoint count, live health & latency per service — built from our continuous catalog+reliability scan. ?since=<unix> for newly-launched services; ?category=/?health=/?sort= to filter & rank. Skip scanning the whole Bazaar yourself. Objective facts, machine-readable.

## Output

A machine-readable JSON list of x402 services on Base, each with their category, price range, endpoint count, current health status, and latency metrics, filtered and ranked according to the query parameters supplied.

## Request schema (JSON Schema)

```json
{
 "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",
     "properties": {
      "sort": {
       "type": "string",
       "description": "resources | latency | price | newest"
      },
      "limit": {
       "type": "string",
       "description": "max results (default 100, max 1000)"
      },
      "since": {
       "type": "string",
       "description": "unix seconds; return only services first seen at/after this (new launches)"
      },
      "health": {
       "type": "string",
       "description": "filter: healthy | misconfigured | down"
      },
      "category": {
       "type": "string",
       "description": "filter by category/tag (e.g. ai, crypto, defi, security)"
      }
     },
     "description": "Machine-readable map of the x402 service ecosystem on Base: price range, category, endpoint count, live health & latency per service. ?since=<unix> returns newly-launched services; ?category=, ?health=, ?sort=resources|latency|price|newest to filter/rank. Built from our continuous catalog+reliability scan."
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "returned": 1,
  "services": [
   {
    "domain": "blockrun.ai",
    "health": "healthy",
    "category": "ai",
    "first_seen": 1719500000,
    "latency_ms": 398,
    "service_name": "BlockRun.AI",
    "price_max_usd": 5.002,
    "price_min_usd": 0.001,
    "resource_count": 185
   }
  ],
  "total_services": 1614,
  "healthy_services": 1405,
  "ecosystem_db_updated_at": 1719500000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-ecosystem-service-map-8c70f353/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.dailyelo.com](https://www.zero.xyz/host/x402.dailyelo.com/llms.txt)
