High-accuracy web search and research via Parallel.ai API. Optimized for AI agents with rich excerpts and citations.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill parallel-ai --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Parallel Ai?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-parallel-ai)More formats (shields.io, HTML) on the badges page.
---
name: parallel
description: High-accuracy web search and research via Parallel.ai API. Optimized for AI agents with rich excerpts and citations.
triggers:
- parallel
- deep search
- research
metadata:
clawdbot:
emoji: "🔬"
---
# Parallel.ai 🔬
High-accuracy web search API built for AI agents. Outperforms Perplexity/Exa on research benchmarks.
## Setup
```bash
pip install parallel-web
```
API key is configured. Uses Python SDK.
```python
from parallel import Parallel
client = Parallel(api_key="YOUR_KEY")
response = client.beta.search(
mode="one-shot", # or "fast" for lower latency/cost, "agentic" for multi-hop
max_results=10,
objective="your query"
)
```
## Modes
| Mode | Use Case | Tradeoff |
|------|----------|----------|
| `one-shot` | Default, balanced accuracy | Best for most queries |
| `fast` ⚡ | Quick lookups, cost-sensitive | Lower latency/cost, may sacrifice some accuracy |
| `agentic` | Complex multi-hop research | Higher accuracy, more expensive |
## Quick Usage
```bash
# Default search (one-shot mode)
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "Who is the CEO of Anthropic?" --max-results 5
# Fast mode - lower latency/cost ⚡
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "latest AI news" --mode fast
# Agentic mode - complex research
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "compare transformer architectures" --mode agentic
# JSON output
{baseDir}/.venv/bin/python {baseDir}/scripts/search.py "latest AI news" --json
```
## Response Format
Returns structured results with:
- `search_id` - unique search identifier
- `results[]` - array of results with:
- `url` - source URL
- `title` - page title
- `excerpts[]` - relevant text excerpts
- `publish_date` - when available
- `usage` - API usage stats
## When to Use
- **Deep research** requiring cross-referenced facts
- **Company/person research** with citations
- **Fact-checking** with evidence-based outputs
- **Complex queries** that need multi-hop reasoning
- Higher accuracy than traditional search for research tasks
## API Reference
Docs: https://docs.parallel.ai
Platform: https://platform.parallel.ai
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!