---
api: 'Revolut X Crypto Exchange REST API'
---

# Cancel all active orders

Cancels all open limit, conditional, and Take Profit/Stop Loss (TPSL) orders associated with the authenticated account.

## Endpoint

DELETE `/orders`

## Parameters

### header parameters

- `X-Revx-Timestamp` (integer, required)
  Current timestamp in Unix epoch milliseconds. 
  Used to prevent replay attacks and construct the signature.
  Provided with other authentication headers.

- `X-Revx-Signature` (string, required)
  The Ed25519 signature of the request. 
  Provided with other authentication headers.
  
  :::tip
  See **Authentication headers: Signing a request** for details on how to generate this.
  :::

## Returns

### 204

OK - Orders cancelled successfully.

## Error responses

| HTTP status code | Description |
| --- | --- |
| 401 | Unauthorized |
| 403 | Forbidden |
| 409 | Conflict |
| 429 | Rate Limit Exceeded |
| 5XX | Server Error |
