Today two new record types were added to dx.doi.org resolution for Crossref DOIs. These allow anyone to retrieve DOI bibliographic metadata as formatted bibliographic entries. To perform the formatting weâre using the citation style language processor, citeproc-js which supports a shed load of citation styles and locales.
In fact, all the styles and locales found in the CSL repositories, including many common styles such as bibtex, apa, ieee, harvard, vancouver and chicago are supported. First off, if youâd like to try citation formatting without using content negotiation, thereâs a simple web UI that allows input of a DOI, style and locale selection. If youâre more into accessing the web via your favorite programming language, have a look at these content negotiation curl examples. To make a request for the new âtext/bibliographyâ record type: $ curl -LH âAccept: text/bibliography; style=bibtexâ http://dx.doi.org/10.1038/nrd842 @article{Atkins_Gershell_2002, title={From the analystâs couch: Selective anticancer drugs}, volume={1}, DOI={10.1038/nrd842}, number={7}, journal={Nature Reviews Drug Discovery}, author={Atkins, Joshua H. and Gershell, Leland J.}, year={2002}, month={Jul}, pages={491-492}} A locale can be specified with the âlocaleâ record type parameter, like this: $ curl -LH âAccept: text/bibliography; style=mla; locale=fr-FRâ http://dx.doi.org/10.1038/nrd842 Atkins, Joshua H., et Leland J. Gershell. « From the analystâs couch: Selective anticancer drugs ». Nature Reviews Drug Discovery 1.7 (2002): 491-492. You may want to process metadata through CSL yourself. For this use case, thereâs another new record type, âapplication/citeproc+jsonâ that returns metadata in a citeproc-friendly JSON form: $ curl -LH âAccept: application/citeproc+jsonâ http://dx.doi.org/10.1038/nrd842 {âvolumeâ:â1â,âissueâ:â7â,âDOIâ:â10.1038/nrd842â,âtitleâ:âFrom the analystâs couch: Selective anticancer drugsâ,âcontainer-titleâ:âNature Reviews Drug Discoveryâ,âissuedâ:{âdate-partsâ:[[2002,7]]},âauthorâ:[{âfamilyâ:âAtkinsâ,âgivenâ:âJoshua H.â},{âfamilyâ:âGershellâ,âgivenâ:âLeland J.â}],âpageâ:â491-492â,âtypeâ:âarticle-journalâ} Finally, to retrieve lists of supported styles and locales, see: