> For the complete documentation index, see [llms.txt](https://mini-cubes.gitbook.io/monex-apis/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mini-cubes.gitbook.io/monex-apis/integration-and-function-flow/3.-get-details-optional.md).

# 3. Get Details (Optional)

**POST Request to** [**https://ggnft.ibanera.com/v3/submit-transaction/getDetails**](https://ggnft.ibanera.com/v3/submit-transaction/getDetails)

<mark style="color:green;">`POST`</mark> `https://ggnft.ibanera.com/v3/submit-transaction/getDetails`

#### Headers

| Name                                           | Type   | Description                 |
| ---------------------------------------------- | ------ | --------------------------- |
| x-api-key<mark style="color:red;">\*</mark>    | String | API key provided by Ibanera |
| content-type<mark style="color:red;">\*</mark> | String | application/json            |

#### Request Body

| Name                                   | Type   | Description |
| -------------------------------------- | ------ | ----------- |
| txID<mark style="color:red;">\*</mark> | String | 703344      |

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

```json
{
    "success": true,
    "data": {
        "txID": "703344",
        "orderAmount": 76,
        "totalAmount": 77.78,
        "paymentStatus": "AUTHORISED",
        "mintDate": "",
        "quote_id": "2LpSkSsZvw3lIWeN0sRB",
        "created_at": 1704406888135
    }
}
```

{% endtab %}

{% tab title="400: Bad Request " %}

```
{
    "success": false,
    "message": "Server Error. Try again or contact support for assistance"
}
```

{% endtab %}

{% tab title="401: Unauthorized " %}

<pre><code><strong>{
</strong>    "success": false,
    "message": "Unauthorized"
}
</code></pre>

{% endtab %}
{% endtabs %}
