All Projects → open-retractions → open-retractions

open-retractions / open-retractions

Licence: other
‼️ 📄 🔍 an API and web interface to check if a paper has been retracted

Projects that are alternatives of or similar to open-retractions

Awesome Sentinel
curated list of awesome tools, tutorials and APIs for Copernicus Sentinel satellite data
Stars: ✭ 335 (+679.07%)
Mutual labels:  science, open-data
elife-xpub
eLife is an open-access journal and technology provider that publishes promising research in the life and biomedical sciences. This is their implementation of a submission and peer review system based on Coko PubSweet and xPub.
Stars: ✭ 29 (-32.56%)
Mutual labels:  science, publishing
Pandoc Scholar
Create beautiful and semantically meaningful articles with pandoc.
Stars: ✭ 342 (+695.35%)
Mutual labels:  science, publishing
Open Science Resources
A publicly-editable collection of open science resources, including tools, datasets, meta-resources, etc.
Stars: ✭ 58 (+34.88%)
Mutual labels:  science, open-data
aletheia-admin
Project documentation including our README, contributing guidelines and more.
Stars: ✭ 32 (-25.58%)
Mutual labels:  science, publishing
crossref
Client for the Crossref API
Stars: ✭ 29 (-32.56%)
Mutual labels:  science, publishing
Django Publications
A Django app for managing scientific publications.
Stars: ✭ 95 (+120.93%)
Mutual labels:  science, publishing
allofplos
Repository for the allofplos project.
Stars: ✭ 45 (+4.65%)
Mutual labels:  science, publishing
events
Materials related to events I might attend, and to talks I am giving
Stars: ✭ 22 (-48.84%)
Mutual labels:  science, open-data
aletheia-app
Alethia peer to peer publishing platform
Stars: ✭ 46 (+6.98%)
Mutual labels:  science, publishing
git-rdm
A research data management plugin for the Git version control system.
Stars: ✭ 34 (-20.93%)
Mutual labels:  publishing, open-data
web-verse
Toolbox for deep, resilient, markup-invariant linking into HTML documents without their cooperation
Stars: ✭ 25 (-41.86%)
Mutual labels:  science, publishing
plostime
Publication delays at PLOS and 3,475 other journals
Stars: ✭ 19 (-55.81%)
Mutual labels:  science, publishing
arboles
Mapa de Arbolado Urbano
Stars: ✭ 13 (-69.77%)
Mutual labels:  science, open-data
Things-a-scientist-is-suppposed-to-know
A comprehensive and long list of things a modern scientist is supposed to know
Stars: ✭ 275 (+539.53%)
Mutual labels:  science
ghost-on-heroku
One-button Heroku deploy for the Ghost 3.2.0 blogging platform.
Stars: ✭ 232 (+439.53%)
Mutual labels:  publishing
github-create-release-action
Github Action that create Github Release automatically
Stars: ✭ 28 (-34.88%)
Mutual labels:  publishing
Tribeca
A free theme for Ghost
Stars: ✭ 15 (-65.12%)
Mutual labels:  publishing
uoft-scrapers
Public web scraping scripts for the University of Toronto.
Stars: ✭ 48 (+11.63%)
Mutual labels:  open-data
node-nrk
📺 Node.JS wrapper for NRK.no APIs
Stars: ✭ 18 (-58.14%)
Mutual labels:  open-data

‼️ 📄 🔎 Open retractions 🔍 📄 ‼️

An API and web interface to check whether a paper has been retracted

Travis CI build    

Use the web-tool to check whether a paper has been retracted.

API

To query the API, simply GET http://openretractions.com/api/doi/${doi}/data.json.

e.g.:

curl http://openretractions.com/api/doi/10.1002/job.1787/data.json

openretraction response format

If the paper has no recorded update in the database, the API will return a 404 (not found) error.

If there's a recorded update, the API will return a JSON object.

If the paper was retracted, the retracted field will be true. If the field is false, it means a non-retraction update to the paper was recorded by the publisher. This could be:

  • a correction or erratum
  • an expression of concern
  • a withdrawal

In some cases, publishers mis-label retractions as other updates. It is therefore best to follow the update link to check the full statement about any update.

Here's an example JSON response that shows the full format:

{
  "retracted": false,  // whether or not the paper has been retracted
  "timestamp": 1361836800000, // the UNIXtime when the original paper was published
  "update": {
    "timestamp": 1491464002919, // the UNIXtime when the update was recorded
    "doi": "10.1002/job.1858", // the DOI of the update
    "type": "correction" // the publisher's description of the update
  },
  "doi": "10.1002/job.1787", // the DOI of the original paper
  "journal": "Journal of Organizational Behavior",
  "publisher": "Wiley-Blackwell",
  "title": "Erratum: Cognitive and affective identification: Exploring the links between different forms of social identification and personality with work attitudes and behavior"
}

credits

copyright and licenses

The code in this repository is released under the MIT license.

The data are factual and therefore not subject to copyright. To the extent that we have accrued any rights to the data (such as compilation, arrangement and presentation rights), we waive those rights to the extent permitted by law, and place all such works in the public domain. Specifically, we do so using the CC0 1.0 Universal Public Domain Dedication.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].