API Authentication

Account-related requests must include a Bearer token in the Authorization header. Obtain your API key from the merchant console.

Account APIs use Bearer Token. Most `/api/client/` endpoints use the `X-Uuid` header instead.

Endpoint

GEThttps://open.hiobuy.com/v1/user/profile

Full URL: https://open.hiobuy.com/v1/user/profile

Request headers

Authorization: Bearer YOUR_API_KEY

Sample response

{
  "status": "success",
  "user": {
    "id": "user_98234",
    "name": "Jane Doe",
    "role": "partner"
  }
}