# DeepNets Streamflow Lock Statistics by Token Mint

> DeepNets Streamflow Lock Statistics by Token Mint is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns Streamflow lock statistics for a given Solana token mint, including total locked amount, locked percentage, active stream count, recent activity, and top streams.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/streamflow-locks/6YCkMnqeD5SBLixBALnkFPGV6479tBJL3VCV1cC1pump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-b934f809
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OJTPOrSA_DUViC_weEzQq

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 api-deepnets-ai-b934f809
```

Example prompt: Can you pull the Streamflow lock stats for the Solana token with mint address 6YCkMnqeD5SBLixBALnkFPGV6479tBJL3VCV1cC1pump — I want to know how much of the supply is locked, how many active streams there are, and who the top streamers are?

## When to prefer this

Use this endpoint when you need Streamflow-specific lock and vesting statistics for a Solana token, especially pump.fun tokens, including locked supply percentage and active stream breakdowns. Prefer over generic token info endpoints when the user specifically needs lock/vesting data rather than price or holder data.

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Token with no Streamflow locks returns zero/empty statistics
- Rate limiting may occur for high-frequency requests
- Non-existent mint address may return 404 or null data
- Network latency from Solana RPC queries may cause slow responses

## How this service works

Returns Streamflow lock statistics for a given token mint, including total locked amount, locked percentage, active stream count, recent locking activity, and top streams.

## Output

Returns a JSON object with Streamflow lock statistics for the queried token mint, including: total locked token amount, locked percentage of supply, number of active streams, recent locking activity events, and details on the top streams (such as stream IDs, amounts, and recipients).

## 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": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "example": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
       "description": "Solana token mint address (base58). pump.fun tokens end in \"pump\"."
      }
     }
    }
   },
   "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/api-deepnets-ai-b934f809/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepnets.ai](https://www.zero.xyz/host/api.deepnets.ai/llms.txt)
