> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hostrox.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Access & Authorization

> Request format and how to obtain your API URL and API Key

Requests sent to the API service must use the **`POST`** method. Data sent and received is formatted as **`application/json`**.

## Request format

* **Method:** `POST`
* **Content-Type:** `application/json`
* **Accept:** `application/json`

All request bodies must be a valid JSON object, and all responses are returned as JSON.

```bash theme={null}
curl -X POST https://client.hostrox.net/api/reseller/me \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{
    "key": "YOUR_API_KEY"
  }'
```

## Accessing the API URL

## Accessing the API Key

<Warning>
  Treat your API Key like a password. Never expose it in client-side code, public repositories, or browser requests.
</Warning>
