OpenCitations · Example Payload

Citation Count

CitationsScholarlyResearchOpen ScienceBibliometricsDOIAcademic

Citation Count is an example object payload from OpenCitations, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampleendpointrequestresponse

Example Payload

Raw ↑
{
  "example": "Get incoming citation count for a DOI",
  "endpoint": "GET /index/v2/citation-count/{id}",
  "request": {
    "url": "https://api.opencitations.net/index/v2/citation-count/doi:10.1108/jd-12-2013-0166",
    "method": "GET",
    "headers": {
      "Accept": "application/json",
      "authorization": "YOUR-OPENCITATIONS-ACCESS-TOKEN"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": [
      {
        "count": "34"
      }
    ]
  }
}