---
api: 'Crypto Ramp API'
---

# Retrieve all sell orders

Use this endpoint for the sell (off-ramp) flow.
Retrieve all sell orders in a date range.

The results are sorted chronologically by the `created_at` date (i.e. oldest first).

## Endpoint

GET `/sell-orders`

## Parameters

### header parameters

- `X-API-KEY` (any, optional)
  Your API key that you received during integration setup. 
  For more information, see the **Authorization** section.

### query parameters

- `start` (string, required)
  The earliest date for the sell order creation date range (inclusive) in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
  
  In other words, the oldest sell order creation date you are interested in.

- `end` (string, required)
  The latest date for the sell order creation date range (inclusive) in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.
  
  In other words, the most recent sell order creation date you are interested in.

- `skip` (integer, optional)
  The number of sell orders to skip at the beginning of the range when fetching sell orders (sorted by creation date, oldest first).
  
  This means that if you set `skip=3`, the first three sell orders are skipped, and the list of sell orders that you get as a result will start with the order that would normally be 4th on the list.

- `limit` (integer, optional)
  The maximum number of sell orders to fetch from the given range.
  Must be between `1` and `1000` (inclusive).
  Default value is `100`.

## Returns

### 200

OK

#### Response attributes


## Error responses

| HTTP status code | Description |
| --- | --- |
| 400 | Bad request  A request parameter is invalid. |
| 401 | Unauthorized |
| 429 | Too Many Requests |
| 500 | Server error  An unexpected error occurred. |
| 503 | The endpoint is disabled by Kill Switch |
