Overview
GET
/public/papers/categoriespublicDistinct category names used by published papers (cross-author facet source)
List categories.
Responses
200
Distinct category names, sorted alphabetically
- itemsstring[]
The string values.
Example
{
"items": [
"string"
]
}Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/public/papers/categories" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/public/papers/categories", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();