🧪 Skills
bioRxiv access using API with support of time period and category
Access and retrieve biology preprints from bioRxiv by category and date range, including paper metadata without needing authentication.
v1.0.0
Description
name: biorxiv version: 1.1.0 description: Access bioRxiv preprint repository for biology preprints. Use for: (1) Fetching recent preprints from specific categories like bioinformatics, genomics, molecular-biology, etc., (2) Getting papers by date range, (3) Listing available subject collections, (4) Retrieving paper metadata including titles, authors, DOIs, dates, and categories. No authentication required.
bioRxiv Skill
This skill provides access to the bioRxiv preprint repository using the official bioRxiv API.
When to Use
- User asks for recent biology preprints
- User wants papers from specific bioRxiv categories (bioinformatics, genomics, etc.)
- User needs paper metadata (title, authors, DOI, date, category)
- User asks for preprints from a specific date range
Quick Start
List Available Collections
python scripts/biorxiv.py --list
Fetch Recent Papers
# Default: bioinformatics papers
python scripts/biorxiv.py --collection bioinformatics
# Other collections
python scripts/biorxiv.py --collection genomics
python scripts/biorxiv.py --collection neuroscience
python scripts/biorxiv.py --collection microbiology
# Specific date range
python scripts/biorxiv.py --collection bioinformatics --start 2026-03-01 --end 2026-03-09
# Limit results
python scripts/biorxiv.py --collection bioinformatics --limit 10
Output as JSON
python scripts/biorxiv.py --collection bioinformatics --json
Available Collections
- bioinformatics
- genomics
- molecular-biology
- cell-biology
- genetics
- evolutionary-biology
- ecology
- neuroscience
- plant-biology
- microbiology
- immunology
- cancer-biology
- biochemistry
- biophysics
- structural-biology
- systems-biology
- synthetic-biology
- developmental-biology
- computational-biology
API Notes
Official bioRxiv API
- Base URL:
https://api.biorxiv.org/details/biorxiv/{start_date}/{end_date}/{cursor} - No authentication required
- Returns up to 100 papers per call
- Supports category filtering via query parameter
API Endpoints
/details/biorxiv/[start]/[end]/[cursor]— Paper metadata/pub/[start]/[end]/[cursor]— Published articles only
Usage Patterns
Summarize Recent Papers
- Fetch papers from desired collection
- Parse titles and abstracts
- Group by theme if multiple
- Provide concise summary
Find Papers by Topic
- Search across multiple relevant collections
- Filter by keywords in titles
- Return most relevant results
Reviews (0)
Sign in to write a review.
No reviews yet. Be the first to review!
Comments (0)
No comments yet. Be the first to share your thoughts!