Earlier quoted context omitted.
Do you know about the new CrossRef API? It might be of use. e.g. http://api.crossref.org/works/10.5555/12345678 You can check the Registration Agency with CrossRef to see who's responsible for it: http://doi.crossref.org/ra/10.1073/pnas.1324197111 In this case, it is CrossRef. So this should work: http://api.crossref.org/works/10.1073/pnas.1324197111 It doesn't. I'll see if I can find out what's wrong. If you have an…
How does CrossRef relate to the DOI Foundation? In particular I am curious as to how the DOI data is shared - for example what caused that DOI to be resolvable on dx.doi.org but not doi.crossref.org?
DOIs are persistent identifiers, and the main reason you want those is so you can have a persistent link from one thing to another. A normal hyperlink is subject to link-rot, which is an especially bad problem when you've got printed journals or online 'printed journals'. A DOI is a link that goes via the DOI to redirect to wherever the link is meant to point at this point in history. RAs are responsible for registering DOIs and updating the link redirect data whenever the thing being pointed to moves.
RAs exist for different purposes. CrossRef exists to enable linking between scholarly publications, so we register DOIs for scholarly publications (journal articles, books, etc). DataCite exists to enable linking to objects like datasets.
CrossRef isn't just an DOI RA, but DOIs are a big part of what we do. In addition to this we store metadata from publishers and then let anyone use our APIs to get that data.
The DOI foundation maintains a load of DOI resolution servers. They all do the same job: you click on a link, you're load-balanced to one of the machines, and it replies with the relevant redirect.
Normally when you click on a DOI in a browser, you are redirected to the appropriate URL. We introduced 'Content Negotiation' for DOIs, which means you can supply an 'Accepts' header and get more bibliographic information about a DOI. This works with a redirect.
Here's an example:
curl -L -iH "Accept: text/turtle" http://dx.doi.org/10.5555/515151
That query is answered by one of the DOI servers. It doesn't matter which.
You see you're redirected to Location: http://data.crossref.org/10.5555%2F515151
This is a CrossRef server and it knows all the publication metadata. This then serves all the bibliographic data.
So TL;DR:
1 - The DOI foundation runs the DOI system
2 - CrossRef is an RA for DOIs
3 - Every RA runs its own resolution servers to spread the load
4 - Every resolution server can answer any DOI registered by any RA
5 - If you ask for bibliographic content negotiation on a CrossRef DOI, you'll be redirected to the data.crossref.org server which will give you what you asked for
And that DOI that worked on dx.doi.org but not data.CrossRef.org might be because it can take a day for the data to propagate to various systems.
Any questions, labs@crossref.org