# claw402 NetFlow Top Ranking API

> claw402 NetFlow Top Ranking API 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 top-ranked netflow data for trading pairs or assets, filtered by type, trade direction, and duration.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/nofx/netflow/top-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-netflow-top-ranking-api-bbd9b355
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fnAVPs6BT8sGGVdmgsAmr

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-netflow-top-ranking-api-bbd9b355
```

Example prompt: Show me the top 10 assets ranked by netflow for a spot trade type over the last 24 hours — I want to see which ones have the strongest net inflows right now.

## When to prefer this

Use this endpoint when you need a ranked leaderboard of assets or trading pairs by netflow — especially for identifying top net-inflow assets in crypto markets without needing API keys or registration, paying per call with USDC via the x402 protocol.

## Known failure modes

- Empty data array returned when no assets match the filter criteria
- Invalid or unsupported type/trade/duration parameter values cause unexpected empty results
- Rate limiting or payment failure via x402 protocol returns HTTP 402
- Malformed query parameters result in a non-zero code in the response

## 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 response with a code and a data array containing ranked assets or trading pairs sorted by netflow, reflecting net capital inflows/outflows over the specified duration.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "top",
   "limit": "10",
   "trade": "USDC",
   "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": {
      "type": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      },
      "trade": {
       "type": "string"
      },
      "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-netflow-top-ranking-api-bbd9b355/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)
