# Jina AI Reader

> Converts any URL to LLM-friendly markdown via r.jina.ai and searches the web with s.jina.ai, returning top results in readable format. Use when extracting clean text from web pages, PDFs, or MS Office documents for LLM context, or when grounding LLM responses with live web search results.

- Skill: `tangledgroup/jina-ai-reader` (Agent Skill, multi-file: 5 files)
- Install (CLI): `npx skillmds@latest add tangledgroup/jina-ai-reader`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tangledgroup/jina-ai-reader/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tangledgroup (https://skillmd.com/u/tangledgroup)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tangledgroup/jina-ai-reader

---


# Jina Reader

## Overview

Jina Reader is an API-first SaaS that converts URLs of web pages, PDFs, and MS Office documents into LLM-friendly markdown. It also provides a search endpoint that returns the top 5 results with full page content already extracted. The service runs at `r.jina.ai` (read) and `s.jina.ai` (search).

## When to Use

- Converting any URL to clean markdown for LLM context or RAG pipelines
- Searching the web and getting full article content in one call
- Extracting text from PDFs hosted at arbitrary URLs
- Reading Single Page Applications (SPAs) that require JavaScript rendering
- Building agent/RAG systems that need live, readable web content

## Quick Start

Read a single URL with `curl`:

```bash
curl -sL "https://r.jina.ai/https://en.wikipedia.org/wiki/Artificial_intelligence"
```

Search the web (returns top 5 results with full content):

```bash
curl -sL "https://s.jina.ai/What%20is%20context%20engineering%3F"
```

## Advanced Topics

**Core Concepts**: Endpoints, output formats, and key terminology → [Core Concepts](reference/01-core-concepts.md)

**API Reference**: Request headers, streaming mode, JSON mode, SPA handling, and in-site search → [API Reference](reference/02-api-reference.md)

**Implementation Details**: Architecture, rendering engines, HTML-to-markdown profiles, deployment, and caching tiers → [Implementation Details](reference/03-implementation-details.md)

