{ "opencollection": "1.0.0", "info": { "name": "Academic Graph Author Data Paper Data API", "version": "1.0" }, "items": [ { "info": { "name": "Paper Data", "type": "folder" }, "items": [ { "info": { "name": "Suggest paper query completions", "type": "http" }, "http": { "method": "GET", "url": "https://api.semanticscholar.org/graph/v1/paper/autocomplete" }, "docs": "To support interactive query-completion, return minimal information about papers matching a partial query\n\nExample:\nhttps://api.semanticscholar.org/graph/v1/paper/autocomplete?query=semanti" }, { "info": { "name": "Get details for multiple papers at once", "type": "http" }, "http": { "method": "POST", "url": "https://api.semanticscholar.org/graph/v1/paper/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/paper/batch',\n params={'fields': 'referenceCount,citationCount,title'},\n json={\"ids\": [\"649def34f8be52c8b66281af98ae884c09aef38b\", \"ARXIV:2106.15928\"]}\n )\n print(json.dumps(r.json(), indent=2))\n\n [\n {\n \"paperId\": \"649def34f8be52c8b66281" }, { "info": { "name": "Paper relevance search", "type": "http" }, "http": { "method": "GET", "url": "https://api.semanticscholar.org/graph/v1/paper/search" }, "docs": "Examples:\n