# Get Insurance Premium Using Parcel Value

## /insurance/premium

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

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

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

#### Request Body

| Name                                            | Type   | Description                                                                                                                                                                                                                            |
| ----------------------------------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| currency<mark style="color:red;">\*</mark>      | 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\_value<mark style="color:red;">\*</mark> | Number | Value of parcel, e.g 20000                                                                                                                                                                                                             |
| insurance\_type                                 | String | Type of insurance for which premium should be returned. Defaults to ***local***. Available options are ***local***, ***export***.                                                                                                      |

{% 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-using-parcel-value.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.
