/api/v1/customer/detail

API endpoint documentation

get
Tags:customer
Operation ID: getApiV1CustomerDetail
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

identityIdstring
required

Logged user identity (from your frontend cookies).

cuRefNostring
required

cuRefNo = customer reference number.

customerRealIpstring
optional

No description available

Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/customer/detail?apiKey=YOUR_API_KEY', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json'
  }
})

Example Response

HTTP 200Success Response
{
  "loggedIn": true,
  "cuRefNo": "1cGIHvFoQDGLAbcA",
  "creditBalance": 123,
  "email": "jan@barasek.com",
  "phone": "+420 777123456",
  "firstName": "Jan",
  "lastName": "Barášek",
  "companyName": "BRJ",
  "premium": true,
  "ban": false,
  "groups": [],
  "meta": null,
  "referral": {
    "code": "1cGIHvFoQDGLAbcA",
    "email": "jan@barasek.com",
    "firstName": "Jan",
    "lastName": "Barášek"
  }
}

🔑 API Key Required

All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.

Back to API Documentation
Last updated: January 2, 2026