Skip to main content
POST
/
api
/
googlescholar
/
authors
/googlescholar/authors
curl --request POST \
  --url https://api.anysite.io/api/googlescholar/authors \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@googlescholar_author",
    "affiliation": "<string>",
    "image": "<string>",
    "homepage_url": "<string>",
    "verified_email_domain": "<string>",
    "interests": [],
    "cited_by_count": 123,
    "h_index": 123,
    "i10_index": 123,
    "co_authors": [],
    "articles": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Google Scholar author profile id, or a profile URL containing it

Minimum string length: 1
Examples:

"JicYPdAAAAAJ"

"https://scholar.google.com/citations?user=kukA0LcAAAAJ&hl=en"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@googlescholar_author
affiliation
string | null
image
string | null
homepage_url
string | null
verified_email_domain
string | null
interests
string[]
cited_by_count
integer | null
h_index
integer | null
i10_index
integer | null
co_authors
GooglescholarCoauthor · object[]
articles
GooglescholarArticle · object[]