v2

latestOpenAPI 3.1.02026-07-3171165552.0 KB
Journal

Get yearly scite index for a journal

Get scite index information for a journal given its slug or a valid ISSN, and an optional list of years.

If no year is specified, returns the various scite index values for all years.

To specify one year in the request, use the following format:

/journal/{issn}/yearly-si&years={YEAR_ONE}

To specify multiple years in the request, use the following format:

/journal/{issn}/yearly-si&years={YEAR_ONE}&years={YEAR_TWO}

Response includes a list of objects, each one containing the twoYearSi, fiveYearSi, allYearSi relative to the corresponding year.

get/journal/{issn}/yearly-si

Path parameters

issnstring required

Query parameters

yearsinteger[]

Years to fetch SI for. Leave empty for all years.

Years to fetch SI for. Leave empty for all years.

[
  2020,
  2021
]

Headers

authorizationstring

Set to Bearer <token> to pass token for authorization.

Set to Bearer <token> to pass token for authorization.

Response

Successful Response

relativeYearstring nullable
siTwoYearsnumber nullable
siFiveYearsnumber nullable
siAllYearsnumber nullable
issnsstring[] nullable

Example response

[
  {
    "issns": [
      "0006-3223"
    ],
    "relativeYear": "2021",
    "siAllYears": 0.8731623106623106,
    "siFiveYears": 0.9063056644104026,
    "siTwoYears": 0.9178082191780822
  },
  {
    "issns": [
      "0006-3223"
    ],
    "relativeYear": "2020",
    "siAllYears": 0.8729605900320345,
    "siFiveYears": 0.9001824341933803,
    "siTwoYears": 0.9102272727272728
  }
]