> 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-single-order-endpoint.md).

# Get Single Order Endpoint

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

#### 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

<table><thead><tr><th width="169">Name</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>order_type<mark style="color:red;">*</mark></td><td>String</td><td>"buy or sell"</td></tr><tr><td>order_no<mark style="color:red;">*</mark></td><td>String</td><td>This is the order number of the transaction </td></tr></tbody></table>

Sample code

```json
{
    "order_type":"buy",
    "order_no":"Ayomide_2"
}
```

Response 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 %}
