Re: [arXiv-api] How to query multiple authors at once

13 views
Skip to first unread message

Brian Maltzan

unread,
Nov 18, 2025, 5:49:05 PMNov 18
to a...@arxiv.org
Hi Arno,

Yes, OR and parentheses should work with any combination of fields.
Rate limiting is per endpoint request, so batching should save you time.
I'll look into this more tomorrow.

Thanks,
Brian



On Tue, Nov 18, 2025 at 2:38 PM Arno <ar...@quantware.com> wrote:

Hi, 

I'm working with the arXiv API to track publications from a list of 100+ authors in specific categories (quant-ph, cond-mat, physics.app-ph). After the November 11, 2025 API changes I'm encountering issues with OR queries across multiple authors. Before then my code worked, but I was probably doing something that was only supported by accident.

What I'm trying to achieve is to query multiple authors at once, filtered by categories. For example:

(au:Devoret_Michel_H OR au:Blais_Alexandre OR au:Wallraff_Andreas) AND (cat:quant-ph OR cat:cond-mat OR cat:physics.app-ph)

What I'm observing:

  1. Without parentheses around the author OR clause, the query appears to parse as au:A OR (au:B AND categories) due to operator precedence, returning results from wrong categories (cs.CL, q-bio.PE, etc.)
  2. With parentheses (au:A OR au:B OR au:C) AND (cat:X OR cat:Y), the query returns 0 results
  3. OR queries across different authors seem to only return results from the first author listed (testing shows au:Devoret_Michel_H OR au:Blais_Alexandre OR au:Wallraff_Andreas returns the same 66 results as just au:Devoret_Michel_H alone)

My current workaround is querying each of the 100+ authors individually with 3s delays, but this takes quite a while, especially as I have to try different permutations of names as authors aren’t always consistent in using middle names or initials.

 My questions would be

  • Is OR intended to work across different authors with the au: prefix?
  • Should parentheses work with author queries, or are they only supported for title/abstract queries?
  • What's the recommended approach for querying multiple authors with category filters?
  • Are there any API rate limit considerations for batching author queries?

Thank you for any guidance!

PS thank you for this fantastic tool!

 

--
You received this message because you are subscribed to the Google Groups "arXiv API Discussion" group.
To unsubscribe from this group and stop receiving emails from it, send an email to api+uns...@arxiv.org.
To view this discussion visit https://groups.google.com/a/arxiv.org/d/msgid/api/03aa119b-c1b7-431a-8c93-c5a6e95986d0n%40arxiv.org.

Arno Bargerbos

unread,
Nov 19, 2025, 1:48:44 AMNov 19
to a...@arxiv.org
Hi Brian,

Thanks for looking into this! I deleted my original message (apologies, it is the first time using the mailing list), as I've since resolved the issue through trial and error. My old queries (before November 11) used underscores without the au: prefix (e.g., Devoret_Michel_H), and I had parentheses around batched OR queries. After the update, this no longer worked. The correct format is now au:"LastName, FirstName" (comma-separated with quotes around each name) and that took me some time to figure out. Using the raw=1 parameter mentioned in your update post helped me debug, so thanks for that, and thanks for maintaining the API!

Reply all
Reply to author
Forward
0 new messages