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

# Misc

## Dad joke

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

Get a random dad joke :D

#### Headers

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

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

```json
{
    "success": true,
    "code": 200,
    "message": "",
    "joke: "What concert costs only 45 cents? 50 cent featuring Nickelback."
}
```

{% endtab %}
{% endtabs %}

## User Info

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

Get your user data for this API token.

#### 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": "",
    "id": "1234",
    "created": "2019-08-27T17:11:31.0409998Z",
    "britishAchievement": false
}
```

{% endtab %}
{% endtabs %}
