Get Brand
curl --request GET \
--url https://api.kimp360.com/brands/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kimp360.com/brands/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kimp360.com/brands/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "<string>",
"name": "<string>"
}
}Resources
Get Brand
Retrieves a specific brand by ID.
GET
/
brands
/
{id}
Get Brand
curl --request GET \
--url https://api.kimp360.com/brands/{id} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kimp360.com/brands/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.kimp360.com/brands/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "<string>",
"name": "<string>"
}
}Was this page helpful?