Search imported eprints in the AppView cache
Parameters
authorName
string
Optional
Filter by author name
authorOrcid
string
Optional
Filter by author ORCID
claimStatus
string
Optional
Filter by claim status
cursor
string
Optional
Pagination cursor
limit
integer
Optional
Maximum results to return
query
string
Optional
Search query for title, abstract, or author
source
string
Optional
Filter by external source identifier
Output
application/jsoncursor
string
Optional
Cursor for next page
eprints
array
Required
List of matching imported eprints
hasMore
boolean
Required
Whether more results are available
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": [
"eprints",
"hasMore"
],
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"eprints": {
"type": "array",
"items": {
"ref": "#importedEprint",
"type": "ref"
},
"description": "List of matching imported eprints"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum results to return"
},
"query": {
"type": "string",
"description": "Search query for title, abstract, or author"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"source": {
"type": "string",
"maxLength": 50,
"minLength": 2,
"description": "Filter by external source identifier"
},
"authorName": {
"type": "string",
"description": "Filter by author name"
},
"authorOrcid": {
"type": "string",
"description": "Filter by author ORCID"
},
"claimStatus": {
"type": "string",
"description": "Filter by claim status",
"knownValues": [
"unclaimed",
"pending",
"claimed"
]
}
}
},
"description": "Search imported eprints in the AppView cache"
}