# Get Insurance Premium

## /insurance/premium/?parcel=:parcel\_id

<mark style="color:blue;">`GET`</mark> `https://api.terminal.africa/v1/insurance/premium`

This endpoint allows you to retrieve premium charge for insurance coverage.

#### Query Parameters

| Name                                     | Type   | Description                                                                                                                                                                                                                            |
| ---------------------------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| currency                                 | String | Currency for insurance premium. Defaults to ***NGN***. Available options are ***AED***, ***AUD***, ***CAD***, ***CNY***, ***EUR***, ***GBP***, ***GHS***, ***HKD***, ***KES***, ***NGN***, ***TZS***, ***UGX***, ***USD***, ***ZAR***. |
| parcel<mark style="color:red;">\*</mark> | String | Unique ***parcel\_id*** reference.                                                                                                                                                                                                     |
| insurance\_type                          | String | Type of insurance for which premium should be returned. Defaults to ***local***. Available options are ***local***, ***export***.                                                                                                      |

#### Headers

| Name                                            | Type   | Description                      |
| ----------------------------------------------- | ------ | -------------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Set value to `Bearer SECRET_KEY` |
| Content-Type                                    | String | Set value to `application/json`  |

{% tabs %}
{% tab title="200: OK Insurance premium for parcel retrieved successfully" %}

```javascript
{
    "status": true,
    "message": "Insurance premium for parcel retrieved successfully",
    "data": {
        "premium": 600,
        "currency": "NGN"
    }
}
```

{% 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://docs.terminal.africa/tship/insurance/get-insurance-premium.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.
