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