Download OpenAPI specification:
Argos API has been built from the ground up as a modern API-First Scientific Integrity platform. All our capabilities will be exposed as Public APIs to customers that have a plan that include API Access. Argos can be integrated in your tools and workflows via this API.
In this document you can find documentation about the available endpoints as well as usage examples.
The Argos API follows the best practices of REST API design. You should expect every endpoint, parameter and return field documented in here to be stable. We will NOT remove them or change their semantic until we release a new major version of the API and we will give you enough time to transition to it. You should expect this API to get new endpoints, new parameters and new return fields (API expansion) on the current version and therefore your code should ignore unknown properties when deserializing our responses.
Retrieves the information about the DOI that is held by Argos. We will return the latest information that has been collected by our data pipelines, including article metadata, retractions, expressions of concern, etc.
shortDoi required | string Short DOI, excluding the protocol prefix (https), the host (doi.org) and any port information. Example: 10.1016/j.segan.2022.100905 |
{- "utcResponseTime": "2025-03-04T15:13:45.034988503",
- "title": "RETRACTED: Transnasal humidified rapid-insufflation ventilatory exchange can be utilized in tracheal stenosis caused by thyroid tumor",
- "publicationDate": "2020-01-15",
- "authors": [
- {
- "name": "Hironobu Ueshima",
}, - {
- "name": "Takahiro Goda",
}, - {
- "name": "Hiroshi Otake",
}
], - "articleSource": {
- "name": "Journal of Clinical Anesthesia",
- "type": "journal"
}, - "publisher": "Elsevier BV",
- "isRetracted": true,
- "isRetractionNote": false,
- "records": [
- {
- "type": "Retraction",
- "publicationDate": "2022-02-09",
- "reasons": [
- "False/Forged Authorship",
- "Misconduct by Author"
], - "recordSource": "Scitility"
}
], - "riskAssessment": {
- "riskCategory": "none",
- "authorshipRecordHistory": [
- {
- "authorDisplayName": "John Smith",
- "historicalRecord": [
- {
- "type": "Retraction",
- "publicationDate": "2024-11-13",
}, - {
- "type": "Retraction",
- "publicationDate": "2024-01-29",
}
]
}
],
}
}
This operation allows users to analyze the references of a scientific article by providing a list of DOIs. The analysis includes checking if each reference is retracted, has an expression of concern, is a retraction note, and evaluates its risk level.
A list of DOIs to analyze
references | Array of strings <uri> [ items <uri > ] A list of reference DOIs to be analyzed. |
{- "references": [
]
}
[- {
- "doiFound": true,
- "analysis": {
- "isRetracted": true,
- "hasExpressionOfConcern": false,
- "isRetractionNote": false,
- "isHighRisk": false,
- "isMediumRisk": false
}
}, - {
- "doiFound": true,
- "analysis": {
- "isRetracted": false,
- "hasExpressionOfConcern": false,
- "isRetractionNote": false,
- "isHighRisk": false,
- "isMediumRisk": true
}
},
]