# claw402 x402 AI300 List Endpoint

> claw402 x402 AI300 List Endpoint is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Lists available AI300 (no-FX) API offerings accessible via x402 USDC micropayment on claw402.ai

## Facts

- Endpoint: GET https://claw402.ai/api/v1/nofx/ai300/list
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-x402-ai300-list-endpoint-8d1ba388
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1oA7K1JGYTwSGkdYGoqk0

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 claw402-x402-ai300-list-endpoint-8d1ba388
```

Example prompt: Show me what APIs are available on claw402 — I want to browse the AI300 no-FX catalog, maybe limit it to the first 10 results.

## When to prefer this

Use this endpoint when an agent needs to discover what API services are available on the claw402/vergex.trade marketplace and can pay per-call with USDC via the x402 protocol, with no API key or account registration required. Ideal for autonomous agents that need dynamic API discovery in a permissionless, crypto-native environment.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid or missing x402 payment header — access denied
- limit param is not a valid string-encoded number — may return error or default listing
- Service downtime from vergex.trade backend — 5xx error
- Empty data array returned if no APIs currently listed

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a numeric code (0 = success) and a data array listing available AI300 API offerings accessible via x402 USDC micropayment, without requiring API keys or registration.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": "10"
  }
 }
}
```

## 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": {
      "limit": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-x402-ai300-list-endpoint-8d1ba388/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
