> For the complete documentation index, see [llms.txt](https://docs.fixes.world/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fixes.world/developer/open-api-service/utilities/estimate-fixes-inscribing-cost.md).

# Estimate Fixes inscribing cost

## Estimate the $flow cost for inscribing a new Fixes Inscription

<mark style="color:blue;">`GET`</mark> `http://open-api.fixes.world/v1/utils/estimate-cost?text=text-to-inscribe`

#### Query Parameters

| Name | Type   | Description                                                                   |
| ---- | ------ | ----------------------------------------------------------------------------- |
| text | String | The string to inscribe, remember to encodeURIComponent before pass to the API |

#### Headers

| Name                                            | Type   | Description           |
| ----------------------------------------------- | ------ | --------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer YOUR\_API\_KEY |

{% tabs %}
{% tab title="200: OK The estimated cost of the given text string" %}

```json
{
    "text": "abcd",
    "cost": 0.2099
}
```

{% endtab %}

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

{% endtab %}
{% endtabs %}
