Cited By SciELO Documentation
Release 0.1
Fabio Batalha
August 17, 2015
Contents
1
About
1.1 API Reference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
1
1
2
Indices and tables
5
i
ii
CHAPTER 1
About
“Cited by SciELO” is an API that allow users to retrive citations given for a specific article.
Contents:
1.1 API Reference
1.1.1 GET Services
Retrieve “cited by” documents of a given PID (SciELO ID)
resource: /api/v1/pid/
Mandatory Parameters
q: any code that uniquely represents an article
Query Sample
/api/v1/pid/?q=S0101-31222002000100038
Response Sample:
{
"article": {
"url": "http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0101-31222002000100038",
"source": "Revista Brasileira de Sementes",
"issn": "0101-3122",
"code": "S0101-31222002000100038",
"title": "Adequação do teste de condutividade elétrica para determinar a qualidade fisiológic
},
"cited_by": [
{
"url": "http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0001-37652012000100020",
"source": "Anais da Academia Brasileira de Ciências",
"issn": "0001-3765",
"code": "S0001-37652012000100020",
"title": "Germination of Croton urucurana L. seeds exposed to different storage temperatu
1
Cited By SciELO Documentation, Release 0.1
},
{
"url": "http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0101-31222005000200020",
"source": "Revista Brasileira de Sementes",
"issn": "0101-3122",
"code": "S0101-31222005000200020",
"title": "Teste de condutividade elétrica para avaliação da qualidade fisiológica de seme
}
]
}
Retrieve “cited by” documents of a given DOI
resource: /api/v1/doi/
Mandatory Parameters
q: any code that uniquely represents an article
Query Sample
/api/v1/doi?q=10.1161/01.res.59.2.178
Response Sample:
{
"article": {
"normalizedScore": 100,
"doi": "http://dx.doi.org/10.1161/01.res.59.2.178",
"title": "Power spectral analysis of heart rate and arterial pressure variabilities as a mark
"coins": "ctx_ver=Z39.88-2004&rft_id=info%3Adoi%2Fhttp%3A%2F%2Fdx.doi.org%2F10.1161%2F01
"fullCitation": "M. Pagani, F. Lombardi, S. Guzzetti, O. Rimoldi, R. Furlan, P. Pizzinelli, G
"score": 18.42057,
"year": "1986"
},
"cited_by": [
{
"url": "http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0066-782X2012001200005",
"source": "Arquivos Brasileiros de Cardiologia",
"issn": "0066-782X",
"code": "S0066-782X2012001200005",
"title": "Efeitos da idade e da aptidão aeróbica na recuperação da frequência cardíaca em
},
{
"url": "http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0100-879X1998000300015",
"source": "Brazilian Journal of Medical and Biological Research",
"issn": "1414-431X",
"code": "S0100-879X1998000300015",
"title": "A comparative analysis of preprocessing techniques of cardiac event series for
}
]
}
2
Chapter 1. About
Cited By SciELO Documentation, Release 0.1
Retrieve “cited by” documents of a given title, author and publication year
resource: /api/v1/meta/
Mandatory Parameters
title: a string that represents title of the article
Optional Parameters
author: a string that represents the first author of the article
year: a string that represents the publication year of the article
Query Sample
/api/v1/meta?title=Power spectral analysis of heart rate and arterial pressure variabilities as a marker of
sympatho-vagal interaction in man and conscious dog&author=M. Pagani&year=1986
/api/v1/meta?title=Power spectral analysis of heart rate and arterial pressure variabilities as a marker of
sympatho-vagal interaction in man and conscious dog
Warning: The values may be different when giving more metadata.
Response Sample:
{
'article':{
"title": u'Power spectral analysis of heart rate and arterial pressure variabilities as a mar
"author": u'M. Pagani',
"year": u"1986"
},
'cited_by':[{
'code': u'S0104-07072013000100023',
'title': u'title en',
'issn': u'0104-0707',
'source': u'Texto & Contexto - Enfermagem',
'url': u'http://www.scielo.br/scielo.php?script=sci_arttext&pid=S0104-07072013000100023'
},{
'code': u'S1414-81452012000300003',
'title': u'title pt',
'issn': u'1414-8145',
'source': u'Escola Anna Nery',
'url': u'http://www.scielo.br/scielo.php?script=sci_arttext&pid=S1414-81452012000300003'
}
]
}
1.1. API Reference
3
Cited By SciELO Documentation, Release 0.1
4
Chapter 1. About
CHAPTER 2
Indices and tables
• genindex
• modindex
• search
5
Download

Cited By SciELO Documentation