# Withdraw

## Apply for Withdrawal

> Submit a withdrawal request to the platform.\
> \
> \*\*Weight:\*\* 100 (IP/UID)

```json
{"openapi":"3.0.0","info":{"title":"Coinlocally Withdrawal API","version":"1.0.0"},"servers":[{"url":"https://openapi.coinlocally.com"}],"paths":{"/sapi/v1/withdraw/apply":{"post":{"summary":"Apply for Withdrawal","description":"Submit a withdrawal request to the platform.\n\n**Weight:** 100 (IP/UID)","parameters":[{"name":"X-CH-APIKEY","in":"header","required":true,"schema":{"type":"string"},"description":"Your API-key"},{"name":"X-CH-SIGN","in":"header","required":true,"schema":{"type":"string"},"description":"Request signature"},{"name":"X-CH-TS","in":"header","required":true,"schema":{"type":"integer"},"description":"Timestamp in milliseconds"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["withdrawOrderId","amount","address"],"properties":{"withdrawOrderId":{"type":"string","description":"Custom withdrawal ID (unique)"},"amount":{"type":"string","description":"Withdrawal quantity"},"address":{"type":"string","description":"Withdrawal address"},"label":{"type":"string","description":"Optional secondary address label (e.g. for XRP, XMR)"},"symbol":{"type":"string","description":"Currency symbol (must be precise for multi-chain coins)"}}}}}},"responses":{"200":{"description":"Withdrawal request submitted successfully.","content":{"application/json":{}}}}}}}}
```

## Withdrawal Record Query

> Query withdrawal records based on filters.\
> \
> \*\*Weight:\*\* 100 (IP/UID)

```json
{"openapi":"3.0.0","info":{"title":"Coinlocally Withdrawal API","version":"1.0.0"},"servers":[{"url":"https://openapi.coinlocally.com"}],"paths":{"/sapi/v1/withdraw/query":{"post":{"summary":"Withdrawal Record Query","description":"Query withdrawal records based on filters.\n\n**Weight:** 100 (IP/UID)","parameters":[{"name":"X-CH-APIKEY","in":"header","required":true,"schema":{"type":"string"}},{"name":"X-CH-SIGN","in":"header","required":true,"schema":{"type":"string"}},{"name":"X-CH-TS","in":"header","required":true,"schema":{"type":"string"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"symbol":{"type":"string"},"withdrawId":{"type":"string"},"withdrawOrderId":{"type":"string"},"startTime":{"type":"string"},"endTime":{"type":"string"},"page":{"type":"string"}}}}}},"responses":{"200":{"description":"Successfully retrieved withdrawal records.","content":{"application/json":{}}}}}}}}
```
