For the complete documentation index, see llms.txt. This page is also available as Markdown.

Stuck UTXO Balance

Get blocked (stuck) UTXO balances

get

Read-only — requires an active session. Pass sessionId and nonce as query parameters and include x-hinkal-request-signature: secp256k1_sign(SHA256("GET /stuck-utxo-balance\n" + queryString)) in the headers.

Query parameters
sessionIdstring · uuidRequired

Session identifier UUID from POST /create-session

Example: ffd74231-0672-48c7-bd82-9f72a803578b
noncestring · uuidRequired

Per-request UUID. Echoed back in the response.

Example: 27dd87ee-a56b-4fe3-88de-f7908226c64f
chainIdstringRequired

Chain ID (e.g. 10 for Optimism, 501 for Solana mainnet, 728126428 for Tron mainnet)

Example: 10
Header parameters
x-hinkal-request-signaturestringRequired

Hex-encoded compact secp256k1 signature: secp256k1_sign(SHA256(binding + "\n" + payload)), where binding is "<METHOD> <routePath>" (this route's own method and path, e.g. "POST /refresh-cache" or "GET /balance") and payload is JSON.stringify(body) for POST requests or the raw query string for GET requests. Binding the route into the signed digest stops a signature captured for one endpoint from being replayed against another. See Authentication for the full signing scheme.

Responses
200

Stuck UTXO balances

application/json
get/stuck-utxo-balance
GET /stuck-utxo-balance?sessionId=ffd74231-0672-48c7-bd82-9f72a803578b&nonce=27dd87ee-a56b-4fe3-88de-f7908226c64f&chainId=10 HTTP/1.1
Host: api.hinkal.io
x-hinkal-request-signature: text
Accept: */*
{
  "success": true,
  "balances": [
    {
      "chainId": 10,
      "tokenAddress": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
      "balance": "500000"
    }
  ],
  "nonce": "27dd87ee-a56b-4fe3-88de-f7908226c64f"
}

Last updated