# Streamflow Lock Details by Lock ID

> 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-14).

Retrieves detailed data for a specific Streamflow token lock using its lock identifier on Solana.

## Facts

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

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-9ca64452
```

Example prompt: Can you pull up the Streamflow lock details for lock ID EUpXFywq9KCxLuz1FzppqViwVHbnDatjCyE6g6n1brrr — I want to see what's locked, the unlock schedule, and the current status?

## When to prefer this

Use this endpoint when you need granular details about a single, known Streamflow lock by its specific lock ID (e.g. EUpXFywq9KCxLuz1FzppqViwVHbnDatjCyE6g6n1brrr), rather than aggregate statistics across all locks for a token mint. Prefer this over the mint-based lock stats endpoint when you already have the lock identifier and need per-lock details like unlock schedule and beneficiary.

## Known failure modes

- 429 Too Many Requests — endpoint is rate-limited, retry after a delay
- Invalid or non-existent lock ID returns 404 or empty result
- Lock ID not found on Streamflow returns an error or null data
- Malformed lock ID (not valid base58) causes a 400 bad request
- Service unavailable or timeout returns 5xx error

## How this service works

Retrieves data for a specific Streamflow lock by lock ID. Currently the endpoint is rate-limited and returned a 429 error instead of the requested resource.

## Output

Returns detailed information about a specific Streamflow lock, including locked token amounts, unlock schedule, beneficiary, lock status, and associated metadata for the given lock ID.

## 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-9ca64452/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)
