> For the complete documentation index, see [llms.txt](https://docs.hellopixel.network/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hellopixel.network/dev/partners-quests-api.md).

# 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 %}
