arxiv

Search arXiv papers by keyword, author, category, or ID via REST API.

Updated Apr 25, 2026
One-click install
npx skills add https://github.com/danmartinez78/echo-ghost-backup --skill arxiv-danmartinez78
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: arxiv
Source: https://github.com/danmartinez78/echo-ghost-backup/tree/main/skills/research/arxiv
Command: npx skills add https://github.com/danmartinez78/echo-ghost-backup --skill arxiv-danmartinez78

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

Streamlines scholarly discovery by enabling programmatic search and retrieval of arXiv papers via the free REST API, eliminating manual browsing.

Core Features & Use Cases

  • Search papers by keyword, author, category, or arXiv ID using the free API.
  • Retrieve abstracts and metadata, or fetch full PDFs via web_extract for reading.
  • Integrate with OCR/document workflows or downstream analysis.
  • Includes the scripts/search_arxiv.py helper to run searches from the command line.

Quick Start

Search arXiv for a topic such as transformer models and display the top five results.

Frequently Asked Questions about arxiv

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search arXiv papers by keyword or author without an API key?

You can search arXiv papers by keyword, author, category, or ID using the free REST API. No API key is required; it parses Atom XML responses to retrieve abstracts and metadata.

What's the best way to retrieve full arXiv PDFs for document workflows?

Retrieving full arXiv PDFs is handled via web_extract after finding papers. This fetches full papers for reading and integrates with OCR or downstream document analysis workflows.

Can I run arXiv searches from the command line programmatically?

Yes, you can run arXiv searches from the command line using the included helper script. It supports programmatic use to find and retrieve academic literature via the free API.

Does arXiv API search support fetching abstracts and metadata only?

Yes, arXiv API search supports fetching abstracts and metadata directly. It parses Atom XML to streamline scholarly discovery without requiring manual browsing or API keys.

When should I use web_extract instead of the arXiv API for papers?

Use web_extract after the arXiv API when you need full papers beyond abstracts. The API retrieves metadata and abstracts, while web_extract fetches complete PDFs for reading or OCR workflows.

Why parse Atom XML when searching for arXiv research papers?

Parsing Atom XML is required because the arXiv REST API returns results in this format. It extracts paper metadata and abstracts to enable programmatic search and literature discovery.