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

Pricing

One price, in dollars

Providers
Meerkat1 served100.00% uptime1007ms p50$0.99/1k reqflat

Try it

Make your first request

Open in
Get a free key
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 30d
POST /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"}'
FieldTypeExample value
Request body
querystring"attention is all you need"The Google Scholar search query.
Response
dataobjectResult payload, or null when nothing was found.
data.querystringThe query that was searched.
data.resultsobject[]Academic paper result records.
data.results[].citedByintegerNumber of citations reported by Google Scholar.
data.results[].idstringResult identifier.
data.results[].linkstringURL to the paper. Populated whenever the provider has data for the entity.
data.results[].pdfUrlstringURL to an available PDF.
data.results[].publicationInfostringAuthors, venue, and publication year.
data.results[].snippetstringShort paper description snippet.
data.results[].titlestringPaper title. Populated whenever the provider has data for the entity.
data.results[].yearintegerPublication year.
foundbooleanTrue when at least one scholar result was returned.
Price
Price per requestUSD$0.00099
Price /1k reqUSD$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.