Skip to main content
GET
/
white-labeling
/
get
/
{client_id}
Get
curl --request GET \
  --url https://api.klavis.ai/white-labeling/get/{client_id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.klavis.ai/white-labeling/get/{client_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.klavis.ai/white-labeling/get/{client_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.klavis.ai/white-labeling/get/{client_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "success": true,
  "data": {},
  "message": "<string>"
}
{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}

Authorizations

Authorization
string
header
required

Your Klavis AI API key.

Path Parameters

client_id
string
required

Response

Successful Response

success
boolean
required

Whether the operation was successful

data
Data · object | null

The white labeling data if successful

message
string | null

Error message if unsuccessful