# Streamflow Aggregate Lock Statistics by Mint

> Streamflow Aggregate Lock Statistics by 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 aggregate lock statistics for a Solana token mint on Streamflow, including total locked amount, percentage locked, active stream count, 48-hour lock totals, top streams, and token decimals.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/streamflow-locks/aggwBT2LUdtGR6bwYXvDfa5phvVsUNSpZ4orGmga8Jf
- 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-c90861ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qcddz-h8__T8gm5nUzkHd

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-c90861ce
```

Example prompt: Can you pull up the Streamflow aggregate lock stats for the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to see how much is locked, the percentage locked, active stream count, and 48-hour totals.

## When to prefer this

Use this endpoint when you need a rolled-up summary of all Streamflow lock activity for a specific Solana token mint — including locked percentage, stream counts, and recent lock volume — rather than details about a single specific lock ID. Ideal for token due diligence, DeFi research, or evaluating supply lock credibility.

## Known failure modes

- Invalid or malformed mint address returns an error or empty result
- Mint address not found on Streamflow returns null or zero statistics
- Rate limiting may return a 429 error if called too frequently
- Network timeout if Streamflow upstream is slow or unavailable
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Returns aggregate lock statistics for a given Streamflow mint address, including total locked amount, percentage locked, active stream count, 48-hour lock totals, top streams, and token decimals.

## Output

Returns a JSON object with total locked amount, percentage of supply locked, number of active streams, 48-hour lock totals, top streams list, and token decimals for the given Solana 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-c90861ce/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)
