searching-internet-with-jina-ai
2
总安装量
2
周安装量
#63178
全站排名
安装命令
npx skills add https://github.com/zenobi-us/dotfiles --skill searching-internet-with-jina-ai
Agent 安装分布
opencode
2
gemini-cli
2
claude-code
2
mcpjam
1
openhands
1
crush
1
Skill 文档
Jina AI Search + Reader
Overview
Use Jina AIâs public endpoints to (1) search the web and (2) fetch readable page content as plain text/markdown via a single URL.
When to Use
- You need quick web search results without an API key or browser
- You need readable page content from a URL for summarization or analysis
- Youâre in a headless environment and only have HTTP tools (curl/wget)
When NOT to use:
- You need advanced ranking, filters, or custom search parameters (use a full search API)
Quick Reference
Search (s.jina.ai)
https://s.jina.ai/YOUR_SEARCH_QUERY
Reader (r.jina.ai)
https://r.jina.ai/YOUR_URL
Implementation
1) Search for pages
curl "https://s.jina.ai/jina%20ai%20reader%20usage"
- URL-encode spaces and special characters in the query.
- Output returns search results with titles/snippets/links (plain text).
2) Fetch readable page content
curl "https://r.jina.ai/https://example.com/article"
- Prepend
https://r.jina.ai/to any HTTP/HTTPS URL. - Output is readable text/markdown for the target page.
3) Typical workflow
- Use
s.jina.aito discover relevant links. - Use
r.jina.aito fetch readable content from those links.
Common Mistakes
- Forgetting to URL-encode the search query â results in malformed requests.
- Omitting the original URL scheme (http/https) after
r.jina.ai/. - Assuming
r.jina.aiperforms search (it only reads a specific URL).