> 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/quick-answers.md).

# Quick Answers

## Get all quick answers

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

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

```json
[
    {
        "id": "1",
        "title": "hello",
        "content": "<p><strong>How can I help you?</strong></p>"
    },
    {
        "id": "2",
        "title": "test",
        "content": "Test message!"
    }
]
```

{% endtab %}
{% endtabs %}

## Get a category

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

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

```json
{
    "id": "1",
    "title": "hello",
    "content": "<p><strong>How can I help you?</strong></p>"
}
```

{% endtab %}
{% endtabs %}
