Find claimable eprints matching the user's identity or search criteria. Requires authentication.
Parameters
Output
application/jsoncursor
string
Optional
Cursor for next page of results
eprints
array
Required
List of claimable eprints
hasMore
boolean
Required
Whether more results are available
Errors
AuthenticationRequired
Authentication is required to find claimable eprints Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired",
"description": "Authentication is required to find claimable eprints"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"eprints",
"hasMore"
],
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for next page of results"
},
"eprints": {
"type": "array",
"items": {
"ref": "#claimableEprint",
"type": "ref"
},
"description": "List of claimable eprints"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"q": {
"type": "string",
"description": "Search query (title, author name, DOI)"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"source": {
"type": "string",
"description": "Filter by external source",
"knownValues": [
"arxiv",
"biorxiv",
"medrxiv",
"osf",
"lingbuzz",
"zenodo",
"ssrn",
"philpapers"
]
}
}
},
"description": "Find claimable eprints matching the user's identity or search criteria. Requires authentication."
}