# Streamflow Lock & Stream Statistics by Token Mint

> Streamflow Lock & Stream 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-15).

Returns lock and stream statistics for a Solana token mint on Streamflow, including total locked amount, percentage locked, active stream count, 48h historical data, and top streams.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/streamflow-locks/9pm7WKrrZupBQwmnXs22qTuQMXwnF1aGNjHGnqtnpump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-3a20ec6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qmh0IjIYHf6fvyp0MMA3w

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-3a20ec6f
```

Example prompt: Can you pull up the Streamflow lock and stream stats for the Solana token with mint address 9pm7WKrrZupBQwmnXs22qTuQMXwnF1aGNjHGnqtnpump — I want to know how much is locked, what percentage that is, how many active streams there are, and who the top streams belong to?

## When to prefer this

Use this endpoint when you need aggregated Streamflow lock statistics for a Solana token mint — especially when evaluating token safety, vesting credibility, or liquidity lock health. Prefer this over the per-lock-ID endpoint when you want a holistic summary rather than details on a single stream.

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Token mint not found on Streamflow returns empty lock data
- Rate limiting on sibling lock ID endpoint may affect related calls
- Network timeouts for rarely-queried mints
- Non-Solana addresses will fail base58 validation

## How this service works

Returns lock and stream statistics for a given token mint on Streamflow, including total locked amount, percentage locked, active stream count, recent 48h locked data, and top streams.

## Output

Returns an object containing total locked token amount, percentage of supply locked, active stream count, recent 48-hour time-series of locked data, and a list of top Streamflow streams for the given mint address.

## 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-3a20ec6f/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)
