# Skim x402 Ecosystem Feed

> Skim x402 Ecosystem Feed is a paid API for AI agents from skim402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a structured, newest-first feed of new services and price changes across public x402 registries, refreshed every 15 minutes.

## Facts

- Endpoint: GET https://skim402.com/api/v2/feeds/x402/latest
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skim-x402-ecosystem-feed-eb91cd61
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uuo1NpclTVHlM4QKwD5EM

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 skim-x402-ecosystem-feed-eb91cd61
```

Example prompt: Pull the latest 50 entries from the x402 ecosystem feed so I can see which new services and price changes have been registered across the public x402 registries in the last refresh cycle.

## When to prefer this

Use this endpoint when you need a structured, aggregated, real-time-ish view of the entire x402 ecosystem — new service listings and price changes — without scraping individual registries. It is purpose-built for agents that need to monitor or discover x402-compatible APIs programmatically. Prefer it over manual registry browsing or one-off lookups when you want a polling-friendly feed with a 15-minute freshness guarantee.

## Known failure modes

- Registry downtime causes stale (up to 15-minute-old) data to be served rather than an error
- Limit parameter out of range (must be 1–100) returns a validation error
- Payment failure or insufficient USDC balance results in a 402 response blocking the call
- Network timeout if the aggregation layer is slow during a refresh cycle

## How this service works

Skim: x402 ecosystem feed — new services and price changes across the public x402 registries, as structured items. Refreshed on a 15-minute cycle (stale served if a registry is down); poll as often as you like.

## Output

A structured, newest-first list of feed items (up to the requested limit, default 50) describing new service registrations and price changes across public x402 registries. Each item includes metadata about the service or price event. Stale cached data is served if a registry is temporarily unavailable.

## 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",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1,
       "description": "Maximum number of feed items to return (default 50, no upper cap). Items are newest-first."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/skim-x402-ecosystem-feed-eb91cd61/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from skim402.com](https://www.zero.xyz/host/skim402.com/llms.txt)
