> For the complete documentation index, see [llms.txt](https://axis-docs.fuspay.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://axis-docs.fuspay.finance/order-history-and-status/get-multiple-order-endpoint.md).

# Get Multiple Order Endpoint

<mark style="color:blue;">`GET`</mark> `https://exchanger-api.fuspay.finance/api/v1/no-auth/Axis/OrderHistory/`

#### Request Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | "Bearer ${partner\_secret\_key}" |
| x-partner-id<mark style="color:red;">\*</mark>  | String | "pxxxxxx"                        |

Request Body

| Name                                          | Type   | Description         |
| --------------------------------------------- | ------ | ------------------- |
| order\_type<mark style="color:red;">\*</mark> | String | "buy or sell"       |
| date\_from<mark style="color:red;">\*</mark>  | String | "2024-03-01 16:000" |
| date\_to<mark style="color:red;">\*</mark>    | String | "2024-03-02 16:000" |

Sample code

```json
{
    "order_type":"buy",
    "date_from":"2024-10-01 16:000",
    "date_to":"2024-10-10 16:000"
}
```

Reponse Body

{% tabs %}
{% tab title="200: OK Successful Transfer or Failed Transfer" %}
{% code overflow="wrap" lineNumbers="true" fullWidth="true" %}

```json
{
     success: true,
     message: string,
     data: {
     ...
          }
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
