# Streamflow Locks by Token Mint (Deepnets)

> Streamflow Locks by Token Mint (Deepnets) 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 data and lock status metadata for a given Solana token mint address.

## Facts

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

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

Example prompt: Can you check the Streamflow lock status for the Solana token with mint address GjTBRv2caoLeegegrRzL8o4mg6q3Cp7EgU6xKmkSpump and tell me what locks exist for it?

## When to prefer this

Use this endpoint when you need to check whether a specific Solana token has liquidity or supply locked via Streamflow, especially for due diligence on pump.fun tokens or new DeFi projects where lock verification is important for safety assessment.

## Known failure modes

- Invalid or malformed mint address returns an error
- Token mint not found on Streamflow returns empty or null lock data
- Network issues with Solana RPC result in timeout or 5xx error
- Non-existent token address returns no lock records
- Rate limiting if too many requests in a short window

## How this service works

Returns streamflow lock data for a given token or contract address. Intended for querying lock status and related metadata for on-chain assets.

## Output

Returns Streamflow lock records and related metadata for the specified token mint, including lock status, locked amounts, schedules, and other on-chain lock details associated with the token.

## 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-d860a711/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)
