Overview
GET
/content/markdown/tagscontentList the caller's existing tag labels (autocomplete source)
The account's full set of tag labels (content.keywords), scoped to the caller and ecosystem, distinct and alphabetical — the autocomplete/browse source for the research tag field.
Auth: bearerAuth — calls run as the authenticated user.
Responses
200
Distinct tag labels, sorted alphabetically
- itemsstring[]
The string values.
Example
{
"items": [
"string"
]
}401
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/content/markdown/tags" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/content/markdown/tags", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();