> For the complete documentation index, see [llms.txt](https://developer.leaderos.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.leaderos.net/support/categories.md).

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