# SniperX SmartTraders Net Inflow Value Ranking (Multiple Timeframes)

> SniperX SmartTraders Net Inflow Value Ranking (Multiple Timeframes) is a paid API for AI agents from x402.sniperx.fun, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns a ranked list of tokens by SmartTraders net inflow value across multiple timeframes (5min to 1day)

## Facts

- Endpoint: GET https://x402.sniperx.fun/api/v1/smarttraders/ranking/net_inflow_value
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Success rate: 0% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sniperx-smarttraders-net-inflow-value-ranking-multiple-timeframes-cd3bfff1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dCOpz0qqmgX0Agyvu0JEz

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 sniperx-smarttraders-net-inflow-value-ranking-multiple-timeframes-cd3bfff1
```

Example prompt: Show me the top 20 Solana tokens ranked by SmartTraders net inflow value over the last 1 hour — give me page 1 of results.

## When to prefer this

Use this endpoint when you need to identify which Solana tokens are attracting the most 'smart money' net inflows across specific timeframes (5min to 1day). Ideal for trend-spotting, momentum trading signals, or screening tokens with institutional/whale buying pressure. Prefer this over generic volume rankings when the quality of capital flow (smart trader sourced) matters more than raw volume.

## Known failure modes

- Invalid timeframe value (not one of: 5m, 1h, 1d, etc.) returns an error
- Missing required query params (page, limit, time) causes validation failure
- Invalid Solana token address format returns empty or error response
- Page number out of range returns empty results
- Rate limiting or server error returns 5xx response

## How this service works

Get SmartTraders net inflow value ranking (multiple timeframes: 5min-1day)

## Output

A paginated ranked list of Solana tokens sorted by SmartTraders net inflow value for the specified timeframe, including token addresses and associated inflow metrics.

## 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",
     "required": [
      "page",
      "limit",
      "time"
     ],
     "properties": {
      "page": {
       "type": "number",
       "description": "Page number"
      },
      "time": {
       "type": "string",
       "description": "Timeframe (e.g., 5m, 1h, 1d)"
      },
      "limit": {
       "type": "number",
       "description": "Items per page"
      },
      "token_address": {
       "type": "string",
       "description": "The Solana token address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sniperx-smarttraders-net-inflow-value-ranking-multiple-timeframes-cd3bfff1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.sniperx.fun](https://www.zero.xyz/host/x402.sniperx.fun/llms.txt)
