How to find all journals currently published by a publisher

Hi,

I am trying to find an easy way to get from a publisher’s name to a list of all of the journals that they currently publish.

If I start with ‘Springer’, I get 3 member accounts.
/members?query=springer

So, I can pick manually which ones refer to the publisher I am trying to find.

But if I want to know which journals are currently being published by Springer (not including any that were published by Springer in the past and have, say, been sold on), just the ones that they own or publish on behalf of someone else right now. How do I do that? I’ve spend some time on the docs and looked for an answer in the forum, but couldn’t find an answer for this specific problem.

I suppose I could just get 100% of the data and then sort through it, but that would take a very long time for a publisher the size of Springer. Is there a way to just get a list of the current ISSN-Ls for a member id?

Many thanks!

1 Like

Hi Adam,

So, when you do that /members route query
https://api.crossref.org/members?query=springer
you’ll want to grab the member ID value from the relevant record.

In your case, you’re looking for the third record in that results list, Springer Science and Business Media LLC. And you’ll find that their member ID is 297.

Then, you can query for all the works currently associated with that member and facet by ISSN like this
https://api.crossref.org/members/297/works?facet=issn:*&rows=0

That gives you a list of all the ISSNs for journals wherein Springer is identified as the steward of at least some of their DOIs.

That does not mean that Springer is the current publisher or registrant for that journal. It’s not uncommon for a prior publisher to retain stewardship over some of the backfile content while a new/current publisher registers current content.

Then, if you take one of those ISSNs and query for it in the /journals route of the API, the current publisher is listed in that record.

For example https://api.crossref.org/journals/0884-8734 gives you
“publisher”: “Springer-Verlag”,

That said, the /journals route isn’t always consistent. (this is a known issue) So, you’re bound to get a lot of ‘resource not found’ responses if you run that /journals/{issn} query for every ISSN.

The workaround to that is to take the ISSN and query for its most recently registered items. Whoever registered the most recent DOI is almost certainly the current publisher.

For example, the first ISSN in that facet list is 0302-9743, so if you run this query, you’ll get the 20 most recently registered DOIs for that journal along with the member ID and the date they were registered:
https://api.crossref.org/works?filter=issn:03029743&select=DOI,member,created&sort=created
Since those all say “member”: “297”, you can be pretty confident that Springer is the current publisher.

If you want a more definitive result, you can see who we have in our records as the current publisher with permissions to register new DOIs for each journal by either searching the Title List or downloading the title list csv file. The browsable Title List is updated daily, and the csv file is updated weekly.

Please let me know if you have any other questions.

Best,
Shayn

3 Likes

Thanks Shayn, this is fabulous! I’m just putting this together into a process to see if I can reproduce the journal lists from publisher websites. Seems to be working so far - thanks again!