v2
latestOpenAPI 3.1.02026-07-3171165552.0 KBTallies
Get Section Tallies
Get multiple section tallies.
Pass in a list of DOIs and receive a tally for each one indicating how many times it was cited within various sections -- Intro, Methods, Results, Discussion, or Other.
Up to 500 tallies can be requested at once.
post/tallies/cited-by-sections
Headers
authorizationstring
Set to Bearer <token> to pass token for authorization.
Set to Bearer <token> to pass token for authorization.
Request body
string[] required
Example request
[ "10.1016/j.biopsych.2005.08.012", "10.1093/brain/awn044" ]
Response
Successful Response
Example response
{
"tallies": {
"10.1016/j.biopsych.2005.08.012": {
"discussion": 98,
"doi": "10.1016/j.biopsych.2005.08.012",
"introduction": 93,
"methods": 13,
"other": 110,
"results": 8,
"total": 347
},
"10.1093/brain/awn044": {
"discussion": 15,
"doi": "10.1093/brain/awn044",
"introduction": 9,
"methods": 4,
"other": 9,
"results": 1,
"total": 38
}
}
}