Skip to main content
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.
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

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