arXiv-txt.org

Make arXiv papers easily available in LLM-friendly formats.

How It Works

Just change arxiv.org toarxiv-txt.org in the URL.

To fetch the raw text directly, use https://arxiv-txt.org/raw/:

https://arxiv-txt.org/raw/abs/1706.03762

API Usage Guide

To fetch the raw text directly, use https://arxiv-txt.org/raw/:

For example:https://arxiv-txt.org/raw/abs/1706.03762

Python

import requests
arxiv_url = "https://arxiv.org/abs/1706.03762"
summary: str = requests.get(
arxiv_url.replace("arxiv.org", "arxiv-txt.org/raw/")
).text
print(summary)
# Pass this to your favorite agent

Command Line

# Download with curl
curl -o paper.txt https://arxiv-txt.org/raw/abs/1706.03762
# Use with @simonw LLM library
curl -L https://arxiv-txt.org/raw/abs/1706.03762 | \
llm -s "ELI5"