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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://axis-docs.fuspay.finance/order-history-and-status/get-single-order-endpoint.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
