Browse eprints using dynamic faceted classification from the knowledge graph
Parameters
Output
application/jsoncursor
string
Optional
Pagination cursor for next page
facets
array
Required
Available facet refinements
hasMore
boolean
Required
Whether more results exist
hits
array
Required
Matching eprints
impressionId
string
Optional
Impression ID for click tracking
total
integer
Required
Total count of matching eprints
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"hits",
"facets",
"hasMore",
"total"
],
"properties": {
"hits": {
"type": "array",
"items": {
"ref": "#eprintSummary",
"type": "ref"
},
"description": "Matching eprints"
},
"total": {
"type": "integer",
"description": "Total count of matching eprints"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"facets": {
"type": "array",
"items": {
"ref": "#facetDefinition",
"type": "ref"
},
"description": "Available facet refinements"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results exist"
},
"impressionId": {
"type": "string",
"description": "Impression ID for click tracking"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string",
"description": "Optional text query"
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1,
"description": "Maximum results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"facets": {
"type": "string",
"description": "JSON-encoded facet filters keyed by facet slug (e.g., {\"methodology\":[\"meta-analysis\"]})"
}
}
},
"description": "Browse eprints using dynamic faceted classification from the knowledge graph"
}