Use this file to discover all available pages before exploring further.
There’s no single API call that answers “which journals does institution X cite most?” — the referenced_works field on each work contains outgoing citations as raw IDs, not journal names. But with cursor paging and batching, you can build the full picture. We’ll use the Santa Fe Institute (496 works in 2024) as the example.
Top journals cited by Santa Fe Institute authors in 2024 (from a sample of references):
Journal
References
Proceedings of the National Academy of Sciences
14
Science
13
PLoS ONE
12
Nature
7
Environmental Science & Technology
4
Nature Plants
3
Forest Ecology and Management
3
Frontiers in Ecology and Evolution
3
These counts are from a small sample — running the full script produces a complete ranking across all 496 works and their thousands of outgoing references. The interdisciplinary spread (PNAS, Science, Nature alongside ecology journals) is characteristic of SFI’s research.
This recipe requires many API calls — roughly one per 100 referenced works. For an institution with 500 works averaging 30 references each, expect ~150 calls. Add an api_key parameter and a brief time.sleep(0.1) between batches to stay within rate limits.