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
GET
https://open.hiobuy.com/v1/user/profileFull URL: https://open.hiobuy.com/v1/user/profile
Request headers
Authorization: Bearer YOUR_API_KEYSample response
{
"status": "success",
"user": {
"id": "user_98234",
"name": "Jane Doe",
"role": "partner"
}
}