Skip to main content
POST
/
api
/
googlescholar
/
papers
/
search
/googlescholar/papers/search
curl --request POST \
  --url https://api.anysite.io/api/googlescholar/papers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "title": "<string>",
    "@type": "@googlescholar_paper",
    "resource_type": "<string>",
    "authors_line": "<string>",
    "venue": "<string>",
    "year": 123,
    "text": "<string>",
    "cited_by_count": 123,
    "version_count": 123,
    "pdf_url": "<string>",
    "web_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Examples:

"deep learning"

"graph neural network"

count
integer
required

Number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
title
string
required
@type
string
default:@googlescholar_paper
resource_type
string | null
authors_line
string | null
venue
string | null
year
integer | null
text
string | null
cited_by_count
integer | null
version_count
integer | null
pdf_url
string | null
web_url
string | null