Skip to main content
POST
/
api
/
pubmed
/
articles
/
citations
/pubmed/articles/citations
curl --request POST \
  --url https://api.anysite.io/api/pubmed/articles/citations \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "pmid": "<string>",
    "@type": "@pubmed_citation",
    "doi": "<string>",
    "title": "",
    "author_string": "<string>",
    "last_author": "<string>",
    "journal": "<string>",
    "pub_year": 123,
    "volume": "<string>",
    "issue": "<string>",
    "pages": "<string>",
    "pub_types": [],
    "pmc_ref_count": 0,
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

PubMed identifier (PMID)

Minimum string length: 1
Examples:

"23467347"

"30684591"

count
integer
required

Number of articles to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

pmid
string
required
@type
string
default:@pubmed_citation
doi
string | null
title
string
default:""
author_string
string | null
last_author
string | null
journal
string | null
pub_year
integer | null
volume
string | null
issue
string | null
pages
string | null
pub_types
string[]
pmc_ref_count
integer
default:0
web_url
string
default:""