> For the complete documentation index, see [llms.txt](https://docs.kredibel.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kredibel.io/api-references/billing/credit.md).

# Credit

## Endpoint

| Method | URL                                 |
| ------ | ----------------------------------- |
| GET    | `$synapses`**`/v1/billing/credit`** |

### Headers

| Header          | Value                                           |
| --------------- | ----------------------------------------------- |
| `Authorization` | `Bearer` [`YOUR_API_KEY`](/authentication-1.md) |

### **Response**

{% tabs %}
{% tab title="Description" %}

| Field        | Type        | Description             |
| ------------ | ----------- | ----------------------- |
| amount       | `Integer`   | Total available credits |
| updatedAt    | `Timestamp` | Last update             |
| {% endtab %} |             |                         |

{% tab title="Example" %}

```
{
    "message": "Billing Status",
    "data": {
        "amount": 965526063,
        "updatedAt": 1627531044
    }
}
```

{% endtab %}
{% endtabs %}
