# Get Order History

## Get Orders

<mark style="color:blue;">`GET`</mark> `https://v2-order-api.citypay.io/orders/api`

#### Query Parameters

| Name  | Type   | Description                         |
| ----- | ------ | ----------------------------------- |
| page  | number | The page of the list                |
| limit | number | The number of the items on one page |

#### Headers

| Name          | Type   | Description          |
| ------------- | ------ | -------------------- |
| bearer\_token | string | Authentication token |

{% tabs %}
{% tab title="200 " %}

```
{
    "statusCode": 200,
    "data": {
        "items": [
            {
                "id": 2876,
                "token": "token 1",
                "createdAtMiliseconds": 1617786773000,
                "amount": "5.00",
                "status": {
                    "code": "IN_PROGRESS",
                    "label": "IN_PROGRESS"
                },
                "currency": {
                    "id": 2,
                    "currency": "US Dollar",
                    "abbreviation": "USD"
                }
            }
        ],
        "meta": {
            "totalCount": 1,
            "pagesCount": 1,
            "currentPage": 0,
            "nextPage": null
        }
    }
}
```

{% endtab %}
{% endtabs %}
