Can i lookup DOI using just the title and year of a journal article

I have
Title:Temporal variability in nutrient transport in a first-order agricultural basin in southern Ontario
Year:2004
Author:Macrae, Merrin L.

can I use the API to look this up

Hello @merrittr,

Many thanks for your post.

You can use our search tool https://0-search-crossref-org.pugwash.lib.warwick.ac.uk/ to lookup titles and DOIs in our system. This is built upon our REST API so it would be searching against that. You can also search using the API using queries like query.bibliographic or if you were just searching on a title you would use query.title.

You could use query URLs like:

https://0-api-crossref-org.pugwash.lib.warwick.ac.uk/works?query.title=Temporal%20variability%20in%20nutrient%20transport%20in%20a%20first-order%20agricultural%20basin%20in%20southern%20Ontario

I also tried:
https://0-api-crossref-org.pugwash.lib.warwick.ac.uk/works?query.title=Temporal%20variability%20in%20nutrient%20transport%20in%20a%20first-order%20agricultural%20basin%20in%20southern%20Ontario&query.bibliographic=2004,Macrae,%20Merrin%20L.&select=title&rows=1000

I don’t see any matching results coming up, do you know if a DOI has been registered for this piece of work?

Thank you,
Paul

1 Like

Agreed @pdavis . I don’t think a DOI has been registered with us that matches this metadata. Getting similar results from our Simple Text Query form when searching for:

Macrae, Merrin L, Temporal variability in nutrient transport in a first-order agricultural basin in southern Ontario, 2004.

-Isaac

Oh I see , when it returned 100s of entries I thought I just wasnt being specific enough? Wouldnt it be better to return 0 records if there is no matching?

How do I know if there is nom DOI registerd?

Hi @merrittr ,

Thanks for following up.

Oh I see , when it returned 100s of entries I thought I just wasnt being specific enough? Wouldnt it be better to return 0 records if there is no matching?

Not exactly, since that’s not the only use case for the REST API. We’re returning the results with the most relevance in the REST API. From there, we allow metadata users to determine if that relevance matches their expectations. Sometimes it does. Sometimes it does not.

If you are looking for a definitive match, the Simple Text Query form is designed for that type of querying: Simple Text Query form. You can see from my screenshot above that no DOI was returned for: Macrae, Merrin L, Temporal variability in nutrient transport in a first-order agricultural basin in southern Ontario, 2004, which means that for the metadata entered into the form, we do not have a matching record registered with us.

If you’re looking to match a reference list to a definitive DOI, I suggest using the Simple Text Query form.

-Isaac

is there an API cal I can use I am trying to automate this

Hi @merrittr ,

The Simple Text Query form is not meant to be an API. You could use our REST API to do this and just analyze the top result you receive back, like this: https://0-api-crossref-org.pugwash.lib.warwick.ac.uk/works?query.title=Temporal%20variability%20in%20nutrient%20transport%20in%20a%20first-order%20agricultural%20basin%20in%20southern%20Ontario&query.bibliographic=2004,Macrae,%20Merrin%20L.&select=title,DOI&rows=1

-Isaac

@ifarley that is exactly what I need :slight_smile: thanks!

1 Like