# claw402 NOFX Price Ranking

> claw402 NOFX Price Ranking is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a ranked list of price/market data for NOFX assets or trading pairs via the vergex.trade-backed claw402 gateway, paid per-call with USDC.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/nofx/price/ranking
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-nofx-price-ranking-536eb88a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Pshenn3YTx7t79EqSOQA

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-price-ranking-536eb88a
```

Example prompt: Can you pull the current NOFX price rankings from claw402 for the past 24 hours?

## When to prefer this

Use this endpoint when you need ranked price or market data for NOFX assets without needing API key registration, and are comfortable paying $0.002 USDC per call via an x402-compatible wallet. Prefer this over traditional REST APIs when operating in a permissionless, wallet-based payment context.

## Known failure modes

- Empty data array returned when no rankings are available for the given duration
- Payment failure or 402 response if USDC wallet is not properly configured
- Invalid duration parameter causes a malformed or empty response
- Service unavailability from vergex.trade backend results in error
- Unknown or unsupported duration value returns no results

## 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 and a data array containing ranked price or market entries, likely ordered by some metric such as price change or volume over the requested duration.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "duration": "24h"
  }
 }
}
```

## 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": {
      "duration": {
       "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-price-ranking-536eb88a/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)
