# claw402 Netflow Low-Ranking Endpoint

> claw402 Netflow Low-Ranking 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-16).

Retrieves low-ranking netflow data for trading pairs or assets via a USDC micropayment-gated GET request, backed by vergex.trade.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/nofx/netflow/low-ranking
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-netflow-low-ranking-endpoint-2caf7ec2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jkyDbIVcOqNQ4UKk6ycUE

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-low-ranking-endpoint-2caf7ec2
```

Example prompt: Show me the bottom 10 low-ranking netflow entries for spot trades over the last 24 hours from the vergex netflow API — pay with USDC from my wallet.

## When to prefer this

Use this endpoint when you need low-ranking netflow data from vergex.trade and want to pay per-call with USDC without API key registration. Prefer this when building lightweight agents that need bottom-tier capital flow signals for crypto trading decisions.

## Known failure modes

- Payment not received or insufficient USDC — 402 Payment Required response
- Invalid query parameter values (e.g. unsupported type or duration) — may return empty data array
- No data available for the specified filters — returns {code:0, data:[]}
- Network timeout or service unavailability — connection error

## How this service works

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

## Output

Returns a JSON object with a code (0 for success) and a data array containing low-ranking netflow records filtered by the specified type, trade, limit, and duration parameters.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "type": "payment",
   "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-low-ranking-endpoint-2caf7ec2/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)
