TL;DR If you're choosing between academic search APIs that wrap Crossref data, three things matter: response latency (does it scale to bulk lookups?), monthly cost (is the free tier real?), and data shape (one call or three?). I ran benchmarks across the available wrappers — here's what the numbers say. Why a Crossref wrapper at all? The free Crossref REST API at api.crossref.org is generous and well-documented. So why pay for a wrapper? Three reasons most teams end up with one: Polite-Pool latency. Crossref dedicates faster lanes for clients with a contact User-Agent. A wrapper that always uses one gets sub-second responses where direct calls without proper attribution get 2–5 seconds. Response shaping. Crossref's raw response has given / family author splits, three different date fields, and the citation count buried under is-referenced-by-count . Most teams write their own normalizer; a wrapper does it once for everyone. Authentication & billing.…