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

# List

## List Image Gen Templates

<mark style="color:blue;">`GET`</mark> `https://api.fluxpoint.dev/list/templates`

Get a list of image gen templates to use for /gen/{template}

#### Headers

| Name                                            | Type | Description                                           |
| ----------------------------------------------- | ---- | ----------------------------------------------------- |
| Authorization<mark style="color:red;">\*</mark> |      | Your API token here <https://fluxpoint.dev/api/token> |

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

```javascript
{
    "success": true,
    "code": 200,
    "message": "",
    "list" [
        "welcome"
    ]
}
```

{% endtab %}
{% endtabs %}

## List Welcome Banners

<mark style="color:blue;">`GET`</mark> `https://api.fluxpoint.dev/list/banners`

Get a list of welcome background banners to use for /gen/welcome

#### Headers

| Name                                            | Type | Description                                           |
| ----------------------------------------------- | ---- | ----------------------------------------------------- |
| Authorization<mark style="color:red;">\*</mark> |      | Your API token here <https://fluxpoint.dev/api/token> |

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

```javascript
{
    "success": true,
    "code": 200,
    "message": "",
    "list" [
        "space"
    ]
}
```

{% endtab %}
{% endtabs %}

## List Welcome Icons

<mark style="color:blue;">`GET`</mark> `https://api.fluxpoint.dev/list/icons`

Get a list of welcome icons to use for /gen/welcome

#### Headers

| Name                                            | Type | Description                                           |
| ----------------------------------------------- | ---- | ----------------------------------------------------- |
| Authorization<mark style="color:red;">\*</mark> |      | Your API token here <https://fluxpoint.dev/api/token> |

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

```javascript
{
    "success": true,
    "code": 200,
    "message": "",
    "list" [
        "nyancat"
    ]
}
```

{% endtab %}
{% endtabs %}

## List Fonts

<mark style="color:blue;">`GET`</mark> `https://api.fluxpoint.dev/list/fonts`

Get a list of fonts to use for /gen/custom

#### Headers

| Name                                            | Type | Description                                           |
| ----------------------------------------------- | ---- | ----------------------------------------------------- |
| Authorization<mark style="color:red;">\*</mark> |      | Your API token here <https://fluxpoint.dev/api/token> |

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

```javascript
{
    "success": true,
    "code": 200,
    "message": "",
    "list" [
        "Future Earth"
    ]
}
```

{% endtab %}
{% endtabs %}
