# 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 detailed lock information for a specific Streamflow lock identifier on Solana

## Facts

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

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

Example prompt: Can you pull up the Streamflow lock details for mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to see what's locked and the vesting terms for that specific lock ID.

## When to prefer this

Use this endpoint when you need details for a specific known Streamflow lock ID (not aggregate stats). Choose the sibling 'lock and stream statistics' endpoint if you want aggregate totals for a token mint. This endpoint is best for inspecting individual lock contracts, vesting terms, and per-lock on-chain data.

## Known failure modes

- Lock ID not found or invalid — returns empty or error response
- Rate limiting — endpoint is noted as rate-limited, may return 429
- Invalid or malformed mint address query param — returns validation error
- Lock ID corresponds to expired or cancelled lock — may return null or empty data
- Network or upstream Streamflow API unavailability — 5xx error

## How this service works

Retrieves lock information for a Streamflow lock identifier. Intended to return lock details for the specified on-chain resource.

## Output

Returns lock details for the specified Streamflow lock, including locked token amounts, vesting schedule parameters, lock status, associated mint address, and other on-chain metadata about the lock contract.

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