Overview
GET
/content/markdown/categoriescontentList the caller's existing category names (autocomplete source)
The account's full set of category names (content.categories), scoped to the caller and ecosystem, distinct and alphabetical — the autocomplete/browse source for the research classification UI.
Auth: bearerAuth — calls run as the authenticated user.
Responses
200
Distinct category names, 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/categories" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/content/markdown/categories", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();