7

Is there a web service that retrieves all of the ORCIDs for the authors associated with a DOI? I've looked at crossref.org, but I can't seem to find information on how to do this with their service.

I am currently using their HTTP-based API to query information about a publication given its DOI. It returns the names of the authors, but not their ORCIDs.

(An ORCID (Open Researcher and Contributor ID) is a unique identifier for an author of a publication. A DOI (Digital Object Identifier) is the same thing, but for the publication itself)

2
  • Please consider editing your post to be more clear and helpful to those who, for example, might not know what ORCID and DOI stand for. You'll probably get better responses that way too.
    – Jeff
    Commented Nov 15, 2016 at 17:06
  • Did you try linking ORCID with SCOPUS Author ID?
    – Coder
    Commented Nov 16, 2016 at 20:07

2 Answers 2

2

For biomedical publications it is possible to do using Europe PMC API (I work for this database). You can query the database using the DOI like this and extract (authorId type="ORCID") field. Here is the same query using JSON is you prefer.

1

Well an ORCID is made for distinguish persons, and it really become useful precisely in case of homonyms. So with an ORCID you can get the matching author, but how could you get an ORCID from an author name, ie let's say, John Smith? The best you can get in a simple way would be a list of ORCIDs, with no mean to determine which one is correct. A more developed system could relate authors between them or use some other information (subject area, location, ...) to disambiguate and get back the correct ORCID. I don't know if such a system exists.

So the answer to your first question is "no". The simpliest way to get ORCID associated to an author would be if your "information about a publication given its DOI" would include ORCIDs itself.

2
  • "The best you can get in a simple way would be a list of ORCIDs, with no mean to determine which one is correct. ": well, I disagree, you can then list the publications of each of those ORCIDs, and see if one matches the DOI you provided. So, there is a way to do this (I don't know of any web service providing this service, but I don't think it is impossible either).
    – Clément
    Commented Mar 9, 2018 at 13:36
  • @Clément Yes this answer is maybe getting a bit outdated. But I still don't know a tool which automatizes a reverse-searching from article authors to their ORCID. Manually it's possible, as you said; you could also develop your own solution based on provided APIs.
    – paradise
    Commented Mar 12, 2018 at 15:31

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .