# Partners Quests API

## Check quest completed

<mark style="color:green;">`GET`</mark> `/api/v1/quest/{questId}/completed`

\<Description of the endpoint>

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| X-API-KEY    | \<your api key>    |

**Query**

| Name         | Type   | Description             |
| ------------ | ------ | ----------------------- |
| `telegramId` | string | Telegram ID of the user |

**Response**

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

```json
{
  "data": true
}
```

{% endtab %}
{% endtabs %}

## Check Quest Stats

<mark style="color:green;">`GET`</mark> `/api/v1/quest/{questId}/stats`

**Headers**

| Name         | Value              |
| ------------ | ------------------ |
| Content-Type | `application/json` |
| X-API-KEY    | \<your api key>    |

**Response**

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

```json
{
    "completed": 0
}
```

{% endtab %}
{% endtabs %}
