get_author
Retrieve detailed information about a specific academic author using their unique author ID. Specify desired fields to access tailored insights from the Semantic Scholar Academic Graph API.
Instructions
Get detailed information about a specific author.
Args:
author_id: Author ID
fields: Comma-separated list of fields to return
Returns:
Detailed author information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author_id | Yes | ||
fields | No |
Input Schema (JSON Schema)
{
"properties": {
"author_id": {
"title": "Author Id",
"type": "string"
},
"fields": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
}
},
"required": [
"author_id"
],
"title": "get_authorArguments",
"type": "object"
}