# Subscriptions

## Get Subscriptions

<mark style="color:blue;">`GET`</mark> `https://api.uproofs.apio.cc/subscriptions`

This endpoint allows you to get information on your subscription

#### Headers

| Name           | Type   | Description                                               |
| -------------- | ------ | --------------------------------------------------------- |
| Authentication | string | You need to insert api key 🔑 . For Example "apikey 1234" |

{% tabs %}
{% tab title="200 Cake successfully retrieved." %}

```
{
    "status": true,
    "data": {
        "assets": "Number of Asset",
        "proofs": "Number of Proofs",
        "type": "standard",
        "stripeId": "XXXXX",
        "uuid": "XXXX",
        "createdAt": "2021-07-02T18:40:20.579Z",
        "updatedAt": "2021-07-14T16:56:28.758Z"
    }
}
```

{% endtab %}

{% tab title="401 Could not find a cake matching this query." %}

```
{
    "status": false,
    "error": {
        "statusCode": 401,
        "type": "Unauthorized",
        "message": "Missing authorization header",
        "name": "Unauthorized",
        "code": "Unauthorized"
    }
}
```

{% endtab %}
{% endtabs %}
