List tags
curl --request GET \
--url https://api.unitedmarket.ai/tagsconst options = {method: 'GET'};
fetch('https://api.unitedmarket.ai/tags', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.unitedmarket.ai/tags"
response = requests.get(url)
print(response.text)[
{
"id": "<string>",
"slug": "<string>",
"name": "<string>"
}
]Discovery
List tags
Returns public market tags.
GET
https://api.unitedmarket.ai
/
tags
List tags
curl --request GET \
--url https://api.unitedmarket.ai/tagsconst options = {method: 'GET'};
fetch('https://api.unitedmarket.ai/tags', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.unitedmarket.ai/tags"
response = requests.get(url)
print(response.text)[
{
"id": "<string>",
"slug": "<string>",
"name": "<string>"
}
]⌘I
