# claw402 NoFX Query Rank List

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

Returns a ranked list of no-FX (fee-free) query results, paginated by a configurable limit, paid per-call with USDC via x402.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/nofx/query-rank/list
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-nofx-query-rank-list-efc81eb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jO8KpmLzA38L4rsXrqs4M

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-nofx-query-rank-list-efc81eb1
```

Example prompt: Show me the top 10 ranked no-FX query results from claw402 — pay with USDC, no API key needed, just use my wallet.

## When to prefer this

Use this endpoint when you need a ranked list of no-FX query results and want to pay per-call in USDC without registering or obtaining an API key. Prefer this over traditional API-key-gated ranking endpoints when operating in a crypto-native, wallet-based payment context.

## Known failure modes

- Payment not received or insufficient USDC balance — returns HTTP 402 Payment Required
- Invalid or missing `type` or `method` fields — returns validation error
- Limit parameter is non-numeric or out of range — may return empty data array or error
- Service unavailable from vergex.trade backend — returns upstream error

## 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 status code (code: 0 on success) and a data array containing ranked no-FX query entries. The number of items returned can be controlled by the optional `limit` query parameter.

## 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-nofx-query-rank-list-efc81eb1/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)
