Overview
GET
/public/users/{slug}/paperspublicList an author's published papers (metadata only)
Fetch a record from papers by slug.
Parameters
- slugpathstring
- qquery · optionalstring
Free-text query matched across title, body, category, and tags.
Responses
200
Published papers (metadata only), newest-updated first
- itemsPublicPaperSummary[]
Example
{
"items": [
{
"route": "string",
"title": "string",
"category": "string",
"tags": [
"string"
],
"updatedAt": "string"
}
]
}404
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/public/users/{slug}/papers" \
-H "Authorization: Bearer YOUR_TOKEN"JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/public/users/{slug}/papers", {
method: "GET",
headers: {
"Authorization": "Bearer YOUR_TOKEN"
},
});
const data = await res.json();