Search for authors by name or other criteria
Parameters
Output
Encoding
application/jsonauthors
array
Required
No description available.
cursor
string
Optional
Cursor for next page
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": [
"authors"
],
"properties": {
"cursor": {
"type": "string",
"description": "Cursor for next page"
},
"authors": {
"type": "array",
"items": {
"ref": "#authorSearchResult",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"q"
],
"properties": {
"q": {
"type": "string",
"minLength": 1,
"description": "Search query"
},
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1,
"description": "Maximum results to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
}
}
},
"description": "Search for authors by name or other criteria"
}