> For the complete documentation index, see [llms.txt](https://hyperliquid-ohlc.gitbook.io/api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hyperliquid-ohlc.gitbook.io/api-docs/rest-api/staking/pending-spot-transfers.md).

# Pending Spot Transfers

## Get pending spot transfers

> Returns finalized unstaking withdrawals currently in the 24-hour window before funds are credited to the spot balance. All active records are returned — no pagination.

```json
{"openapi":"3.1.0","info":{"title":"BlockLiquidity API Service","version":"1.0.0"},"servers":[{"url":"https://data.blockliquidity.xyz"}],"security":[{"HTTPBearer":[]}],"components":{"securitySchemes":{"HTTPBearer":{"type":"http","scheme":"bearer"}},"schemas":{"SpotTransfersResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/SpotTransferEntry"},"type":"array","title":"Data"},"count":{"type":"integer","title":"Count"}},"type":"object","required":["data","count"],"title":"SpotTransfersResponse"},"SpotTransferEntry":{"properties":{"timestamp":{"type":"integer","title":"Timestamp"},"address":{"type":"string","title":"Address"},"amount":{"type":"number","title":"Amount"},"available_in_spot_at":{"type":"integer","title":"Available In Spot At"},"seconds_until_available":{"type":"integer","title":"Seconds Until Available"}},"type":"object","required":["timestamp","address","amount","available_in_spot_at","seconds_until_available"],"title":"SpotTransferEntry"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"},"input":{"title":"Input"},"ctx":{"type":"object","title":"Context"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"}}},"paths":{"/v1/staking/spot-transfers":{"get":{"tags":["Staking Data"],"summary":"Get pending spot transfers","description":"Returns finalized unstaking withdrawals currently in the 24-hour window before funds are credited to the spot balance. All active records are returned — no pagination.","operationId":"get_spot_transfers_v1_staking_spot_transfers_get","parameters":[{"name":"sort_by","in":"query","required":false,"schema":{"type":"string","pattern":"^(timestamp|amount)$","description":"Field to sort by: timestamp or amount","default":"timestamp","title":"Sort By"},"description":"Field to sort by: timestamp or amount"},{"name":"sort_order","in":"query","required":false,"schema":{"type":"string","pattern":"^(asc|desc)$","description":"Sort direction: asc or desc","default":"asc","title":"Sort Order"},"description":"Sort direction: asc or desc"},{"name":"address","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"description":"Filter by wallet address","title":"Address"},"description":"Filter by wallet address"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SpotTransfersResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}}}
```
