# Categories

## Get all categories

<mark style="color:blue;">`GET`</mark> `https://yourwebsite.com/api/support/categories`

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

```json
[
    {
        "id": "1",
        "name": "Cheat"
    },
    {
        "id": "2",
        "name": "Payment"
    },
    {
        "id": "3",
        "name": "Other"
    }
]
```

{% endtab %}
{% endtabs %}

## Get a category

<mark style="color:blue;">`GET`</mark> `https://yourwebsite.com/api/support/categories/<id>`

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

```json
[
    {
        "id": "1",
        "name": "Cheat"
    }
]
```

{% endtab %}
{% endtabs %}
