# 1. Request a Quote

**POST Request to** [**https://ggnft.ibanera.com/v3/get-quote/getQuote**](https://ggnft.ibanera.com/v3/get-quote/getQuote)

<mark style="color:green;">`POST`</mark> `https://ggnft.ibanera.com/v3/get-quote/getQuote`

#### 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 |
| --------------------------------------------- | ------- | ----------- |
| orderAmount<mark style="color:red;">\*</mark> | Numeric | 100         |

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

```json
{
    "success": true,
    "subTotal": 100,
    "fee": 1.9,
    "orderTotal": 101.9,
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJtZXJjaGFudF9pZCI6IjIiLCJvcmRlcl9hbW91bnQiOiIxMDAiLCJvcmRlcl90b3RhbCI6MTAxLjksInBsYXRmb3JtX2ZlZSI6MC41LCJ0eF9mZWUiOjAuNywidG9rZW5fZXhwaXJlIjoiNjAwIiwiaWQiOiJDbWJwbUJHcnRoMnY1M0l0dnpmbyIsIndhbGxldF9pZCI6IkxvdGdVMnVLZDhXQmNVYWJrWjR6IiwiaWF0IjoxNzA0NDA1NDY1LCJleHAiOjE3MDQ0MDYwNjV9.4otFhOIwdBFwa5VyqsT52tKBxz0SFx0qloJfKz4VoTY",
    "tokenExpire": "600",
    "quote_id": "CmbpmBGrth2v53Itvzfo",
    "timestamp": 1704405465401
}
```

{% endtab %}

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

<pre><code><strong>{
</strong>    "statusCode": 401,
    "message": "Invalid API Key provided",
    "error": "Unauthorized"
}
</code></pre>

{% endtab %}

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

```
{
    "success": false,
    "message": "Order Size is below minimum threshold of $10.00 USD"
}
```

{% endtab %}
{% endtabs %}
