Hello
I want to query the corresponding doi number of the journal, including the journal name, issn, eissn. Is there any quick batch query method
Hello @wow,
Thanks for your message and welcome to the Community forum.
If you just want to match references to DOIs, follow these instructions.
- Go to the Simple Text Query form and enter a reference or list of references into the search box.
- Optional:
- select List all possible DOIs per reference to return multiple results
- select Include PubMed IDs in results to include PubMed IDs
- Click Submit
I hope this helps.
Many thanks,
Paul
Thank you for your reply.
I tried out the functionality of this site, but it didnât work as I expected.
I want to know the DOI suffix of a journal, is there a query method?
Hi @wow ,
Maybe a better starting point is to ask what kind of metadata or information do you have to begin your search?
To keep us moving while I await your response, let me propose some options:
If you have an ISSN or maybe just the journal title of the journal in question, our REST API could be a helpful resource. For instance:
Letâs use the journal Contemporary Womenâs Writing (eISSN 1754-1476; pISSN 1754-1484) as our starting point. Thatâs all we know and we want a list of all DOIs registered with Crossref for this journal:
Letâs start with a query using the journalâs print ISSN:
This query is going to give us all the works and all of the metadata registered for each of the journalâs articles that have been registered with us using the print ISSN (20 results at a time):
https://0-api-crossref-org.libus.csd.mu.edu/journals/17541484/works?mailto=support@crossref.org
For comparison, letâs try the electronic ISSN and select for only a portion of the metadata (Iâm requesting the article DOIs, article titles, journal title, the volume and issue the article was registered within, and the published date) and also give ourselves more results (rows; Iâm requesting 600 rows, so I can view all 513 DOIs that have been registered with us, as of this writing) to review at a time:
https://0-api-crossref-org.libus.csd.mu.edu/journals/17541476/works?select=DOI,title,container-title,volume,issue,published&rows=600&mailto=support@crossref.org
Okay. Now, letâs try a different variation, if, say, we only know the title of this journal and nothing more. And, letâs say weâre also curious about cited-by counts for works in the journal Contemporary Womenâs Writing. We could query for:
https://0-api-crossref-org.libus.csd.mu.edu/works?filter=type:journal-article&query.bibliographic=Contemporary+Women%27s+Writing&select=DOI,title,container-title,author,is-referenced-by-count&rows=100&mailto=support@crossref.org
This gives us the top 100 results that most closely match for Contemporary+Womenâs+Writing and returns the article DOI, article title, journal title of that article, author(s), and how many other Crossref DOIs have cited each article.
I hope this is helpful,
Isaac
Very helpful, thank you very much.