Discover external author IDs (OpenAlex, Semantic Scholar, etc.) by searching for a name across academic databases
Parameters
Output
application/jsonmatches
array
Required
No description available.
searchedName
string
Required
The name that was searched
Errors
AuthenticationRequired
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"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"searchedName",
"matches"
],
"properties": {
"matches": {
"type": "array",
"items": {
"ref": "#authorMatch",
"type": "ref"
}
},
"searchedName": {
"type": "string",
"description": "The name that was searched"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "Author name to search for"
},
"limit": {
"type": "integer",
"default": 5,
"maximum": 20,
"minimum": 1,
"description": "Maximum number of matches to return"
}
}
},
"description": "Discover external author IDs (OpenAlex, Semantic Scholar, etc.) by searching for a name across academic databases"
}