Skip to main content
POST
/
api
/
europepmc
/
articles
/
references
/europepmc/articles/references
curl --request POST \
  --url https://api.anysite.io/api/europepmc/articles/references \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "id": "<string>",
  "count": 2,
  "timeout": 300,
  "source": "MED"
}
'
[
  {
    "id": "<string>",
    "@type": "@europepmc_citation",
    "source": "<string>",
    "title": "",
    "author_string": "<string>",
    "citation_type": "<string>",
    "journal_abbreviation": "<string>",
    "pub_year": 123,
    "volume": "<string>",
    "issue": "<string>",
    "page_info": "<string>",
    "cited_order": 123,
    "issn": "<string>",
    "essn": "<string>",
    "is_match": false,
    "cited_by_count": 0
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
id
string
required

Article identifier within the source database

Minimum string length: 1
Examples:

"23467347"

"PMC3616374"

count
integer
required

Number of references to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
source
enum<string>
default:MED

Source database the id belongs to

Available options:
MED,
PMC,
PPR,
PAT,
AGR,
CBA,
CTX,
ETH,
HIR,
NBK

Response

Successful Response

id
string
required
@type
string
default:@europepmc_citation
source
string | null
title
string
default:""
author_string
string | null
citation_type
string | null
journal_abbreviation
string | null
pub_year
integer | null
volume
string | null
issue
string | null
page_info
string | null
cited_order
integer | null
issn
string | null
essn
string | null
is_match
boolean
default:false
cited_by_count
integer
default:0