Google API
Google Scholar API
Search Google Scholar for academic papers with title, authors, citation count, and PDF link.
POST/v1/run/google.scholar
Uptime
100.00%
30d · 1 call
Requests
1
30d
Response
1.1s
median · 30d
Try it
Make your first request
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
"data": {
"query": "example",
"results": [
{
"citedBy": 42,
"id": "a1b2c3d4",
"link": "https://example.com/page",
"pdfUrl": "https://example.com/page",
"publicationInfo": "example",
"snippet": "A short example description of this item.",
"title": "Example title",
"year": 2024
}
]
},
"found": true
}Response interface
interface GoogleScholarResponse {
data: {
query: string;
results: {
citedBy?: number;
id?: string;
link: string;
pdfUrl?: string;
publicationInfo?: string;
snippet?: string;
title: string;
year?: number;
}[];
} | null;
found: boolean;
}Full parameter and response reference - every field, type, and example for this endpoint.
Reference
Request, response, and price
Last verified 2026-09-16 · uptime and latency measured over 30dPOST /v1/run/google.scholar
curl -X POST https://api.getanyapi.com/v1/run/google.scholar \
-H "Authorization: Bearer $ANYAPI_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"attention is all you need"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "attention is all you need"The Google Scholar search query. |
| Response | ||
| data | object | Result payload, or null when nothing was found. |
| data.query | string | The query that was searched. |
| data.results | object[] | Academic paper result records. |
| data.results[].citedBy | integer | Number of citations reported by Google Scholar. |
| data.results[].id | string | Result identifier. |
| data.results[].link | string | URL to the paper. Populated whenever the provider has data for the entity. |
| data.results[].pdfUrl | string | URL to an available PDF. |
| data.results[].publicationInfo | string | Authors, venue, and publication year. |
| data.results[].snippet | string | Short paper description snippet. |
| data.results[].title | string | Paper title. Populated whenever the provider has data for the entity. |
| data.results[].year | integer | Publication year. |
| found | boolean | True when at least one scholar result was returned. |
| Price | ||
| Price per request | USD | $0.00099 |
| Price /1k req | USD | $0.99 |
FAQ
About the Google Scholar API
The AnyAPI Google Scholar API returns Google scholar data as normalized JSON from one POST call to /v1/run/google.scholar. Search Google Scholar for academic papers with title, authors, citation count, and PDF link. AnyAPI returns one normalized schema whichever source serves it. It costs from $0.99 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Google scholar calls through AnyAPI succeeded, with a median response time of 1.1 seconds across 1 measured calls.
It costs from $0.99 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.
Search Google Scholar for academic papers with title, authors, citation count, and PDF link. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.
Over the last 30 days, 100.0% of Google scholar calls through AnyAPI succeeded, with a median response time of 1.1 seconds across 1 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.