{ "opencollection": "1.0.0", "info": { "name": "Academic Graph Author Data API", "version": "1.0" }, "items": [ { "info": { "name": "Author Data", "type": "folder" }, "items": [ { "info": { "name": "Get details for multiple authors at once", "type": "http" }, "http": { "method": "POST", "url": "https://api.semanticscholar.org/graph/v1/author/batch", "body": { "type": "json", "data": "{}" } }, "docs": "* Fields is a single-value string parameter, not a multi-value one.\n* It is a query parameter, not to be submitted in the POST request's body.\n\nIn python:\n\n r = requests.post(\n 'https://api.semanticscholar.org/graph/v1/author/batch',\n params={'fields': 'name,hIndex,citationCount'},\n json={\"ids\":[\"1741101\", \"1780531\"]}\n )\n print(json.dumps(r.json(), indent=2))\n\n [\n {\n \"authorId\": \"1741101\",\n \"name\": \"Oren Etzioni\",\n \"citationCount\": 34803" }, { "info": { "name": "Search for authors by name", "type": "http" }, "http": { "method": "GET", "url": "https://api.semanticscholar.org/graph/v1/author/search" }, "docs": "Specifying papers fields in the request will return all papers linked to each author in the results. Set a limit on the search results to reduce output size and latency.

\nExamples:\n