# DeepNets Streamflow Lock Details by Lock ID

> DeepNets Streamflow Lock Details by Lock ID 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).

Retrieves lock status and metadata for a specific Streamflow token lock by its lock ID on the Solana blockchain

## Facts

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

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

Example prompt: Can you pull up the Streamflow lock details for lock ID 9qriMjPPAJTMCtfQnz7Mo9BsV2jAWTr2ff7yc3JWpump and the mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to see the lock status and any related metadata.

## When to prefer this

Use this endpoint when you have a specific Streamflow lock ID and need the full lock record including status, metadata, and associated mint. Prefer this over the token-level lock stats endpoint when you need details on a single known lock rather than aggregate statistics for a token's locks.

## Known failure modes

- Invalid or nonexistent lock ID returns 404 or empty result
- Missing required mint query parameter returns validation error
- Rate limiting may apply — endpoint noted as rate-limited in sibling descriptions
- Invalid base58 mint address format causes parameter rejection
- Network or upstream Streamflow API unavailability returns 5xx error

## How this service works

Returns streamflow lock details for a given lock ID. Intended for retrieving lock status and related metadata from the DeepNets API.

## Output

Returns structured lock details for the given Streamflow lock ID, including lock status, associated token mint address, lock amount, timing/vesting metadata, and other relevant lock record fields from the Streamflow protocol on Solana.

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