search_authors
Search for academic authors by name, retrieve formatted results, and customize output with fields, limit, and offset parameters using the Semantic Scholar Academic Graph API.
Instructions
Search for authors by name.
Args:
query: Author name or search query
limit: Maximum number of results (default: 10, max: 1000)
offset: Number of results to skip (default: 0)
fields: Comma-separated list of fields to return
Returns:
Formatted author search results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | ||
limit | No | ||
offset | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_authorsArguments",
"type": "object"
}