Overview
GET/public/papers/tagspublic

Distinct tag labels used by published papers (cross-author facet source)

List tags.

Responses
200

Distinct tag labels, sorted alphabetically

  • itemsstring[]

    The string values.

Example
{
  "items": [
    "string"
  ]
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/public/papers/tags" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/public/papers/tags", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();