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

# Information

## Get server information

<mark style="color:blue;">`GET`</mark> `https://plugin.tebex.io/information`

This endpoint returns general information about the authenticated account and server.

#### Headers

| Name           | Type   | Description                   |
| -------------- | ------ | ----------------------------- |
| X-Tebex-Secret | string | The secret key of the server. |

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

```javascript
{
  "account": {
    "id": 123,
    "domain": "http://example.tebex.io",
    "name": "Tebex Store Example",
    "currency": {
      "iso_4217": "GBP",
      "symbol": "£"
    },
    "online_mode": true,
    "game_type": "Minecraft: Java Edition",
    "log_events": true
  },
  "server": {
    "id": 123,
    "name": "Minecraft Server"
  }
}
```

{% endtab %}
{% endtabs %}
