List Brands
curl --request GET \
--url https://api.kimp360.com/brands \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kimp360.com/brands"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"name": "<string>"
}
]
}Resources
List Brands
Retrieves a list of all brands.
GET
/
brands
List Brands
curl --request GET \
--url https://api.kimp360.com/brands \
--header 'x-api-key: <api-key>'import requests
url = "https://api.kimp360.com/brands"
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', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"name": "<string>"
}
]
}Was this page helpful?