/install exa-search-pro
\r \r
Exa Search\r
\r Cloud skill by Claw0x — powered by Claw0x Gateway API.\r \r Advanced web search with precise date filtering, content type selection, and neural search. Perfect for research, competitive analysis, and specialized content discovery.\r \r
Requires Claw0x API key. Sign up at claw0x.com to get your key.\r \r
Prerequisites\r
\r
- Sign up at claw0x.com\r
- Create API key in Dashboard\r
- Set environment variable:\r
# Add to ~/.openclaw/.env\r CLAW0X_API_KEY=ck_live_...\r ```\r
\r
Pricing\r
\r $0.005 per successful call. Failed calls are free.\r \r
- Pay only for successful responses (2xx status)\r
- No monthly fees, no subscriptions\r
- Get started with $5 free credit\r \r
Quick Reference\r
\r
| When This Happens | Do This | What You Get |\r
|-------------------|---------|--------------|\r
| Need academic papers from specific dates | Use category: "research paper" + date range | Filtered research results |\r
| Find GitHub projects from 2024 | Use category: "github" + start_published_date: "2024-01-01" | Recent open-source projects |\r
| Semantic search for concepts | Use search_type: "neural" | Intent-based results |\r
| Exact keyword matching | Use search_type: "keyword" | Traditional search results |\r
\r
5-Minute Quickstart\r
\r
Step 1: Get API Key (30 seconds)\r
Sign up at claw0x.com → Dashboard → Create API Key\r \r
Step 2: Set Environment Variable (30 seconds)\r
export CLAW0X_API_KEY="ck_live_..."\r
```\r
\r
### Step 3: Install Skill (30 seconds)\r
```bash\r
openclaw skills install exa-search\r
```\r
\r
### Step 4: Use Skill (1 minute)\r
```typescript\r
const result = await agent.run('exa-search', {\r
query: 'transformer architecture improvements',\r
category: 'research paper',\r
start_published_date: '2024-01-01',\r
end_published_date: '2024-03-31',\r
search_type: 'neural',\r
num_results: 5\r
});\r
\r
console.log(`Found ${result.result_count} papers`);\r
result.results.forEach(paper => {\r
console.log(`${paper.title} (${paper.published_date})`);\r
});\r
```\r
\r
## Real-World Use Cases\r
\r
### Scenario 1: Academic Research\r
**Problem**: Find transformer papers from Q1 2024\r
**Solution**: Use precise date filtering + research paper category\r
**Example**:\r
```typescript\r
{\r
query: "transformer architecture improvements",\r
category: "research paper",\r
start_published_date: "2024-01-01",\r
end_published_date: "2024-03-31"\r
}\r
```\r
\r
### Scenario 2: GitHub Discovery\r
**Problem**: Find Rust web frameworks created in 2024\r
**Solution**: Use GitHub category + date filtering\r
**Example**:\r
```typescript\r
{\r
query: "rust web framework",\r
category: "github",\r
start_published_date: "2024-01-01"\r
}\r
```\r
\r
### Scenario 3: Competitive Analysis\r
**Problem**: Find similar companies in AI agent space\r
**Solution**: Use company category + domain exclusion\r
**Example**:\r
```typescript\r
{\r
query: "AI agent platforms",\r
category: "company",\r
exclude_domains: ["competitor.com"]\r
}\r
```\r
\r
## Integration Recipes\r
\r
### OpenClaw Agent\r
```typescript\r
import { Claw0xClient } from '@claw0x/sdk';\r
\r
const claw0x = new Claw0xClient(process.env.CLAW0X_API_KEY);\r
\r
const papers = await claw0x.call('exa-search', {\r
query: 'large language model reasoning',\r
category: 'research paper',\r
start_published_date: '2024-01-01',\r
search_type: 'neural'\r
});\r
```\r
\r
### LangChain Agent\r
```python\r
from claw0x import Claw0xClient\r
\r
client = Claw0xClient(api_key=os.environ['CLAW0X_API_KEY'])\r
\r
repos = client.call('exa-search', {\r
'query': 'rust web framework',\r
'category': 'github',\r
'start_published_date': '2024-01-01'\r
})\r
```\r
\r
### Custom Agent\r
```javascript\r
const response = await fetch('https://api.claw0x.com/v1/call', {\r
method: 'POST',\r
headers: {\r
'Authorization': `Bearer ${process.env.CLAW0X_API_KEY}`,\r
'Content-Type': 'application/json'\r
},\r
body: JSON.stringify({\r
skill: 'exa-search',\r
input: {\r
query: 'AI regulation news',\r
category: 'news',\r
start_published_date: '2024-03-15',\r
end_published_date: '2024-03-22'\r
}\r
})\r
});\r
```\r
\r
## Exa vs Tavily Comparison\r
\r
| Feature | Tavily | Exa |\r
|---------|--------|-----|\r
| Date filtering | time_range (coarse) | start/end date (precise) |\r
| Search mode | basic/advanced (depth) | neural/keyword (algorithm) |\r
| Content types | general/news | 7+ types (papers, GitHub, PDF) |\r
| AI answer | ✅ Built-in | ❌ Not available |\r
| Best for | Quick lookups, general info | Research, specialized content |\r
\r
**Use Tavily when**: You need a quick answer or general web search.\r
\r
**Use Exa when**: You need precise dates, specific content types, or semantic search.\r
\r
## Why Use Via Claw0x?\r
\r
- **Unified billing**: One API key for all skills\r
- **Atomic pricing**: Pay per call, not per month\r
- **Zero cost on failure**: Failed calls don't charge\r
- **Production-ready**: 99.9% uptime, \x3C100ms latency\r
- **Security scanned**: OSV.dev integration\r
- **No Exa API key needed**: Claw0x handles upstream authentication\r
\r
## About Claw0x\r
\r
[Claw0x](https://claw0x.com) is the native skills layer for AI agents — providing unified API access, atomic billing, and quality control.\r
\r
**Explore more skills**: [claw0x.com/skills](https://claw0x.com/skills)\r
\r
**GitHub**: [github.com/kennyzir/exa-search](https://github.com/kennyzir/exa-search)\r
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install exa-search-pro - After installation, invoke the skill by name or use
/exa-search-pro - Provide required inputs per the skill's parameter spec and get structured output
What is exa search?
Advanced web search with precise date filtering and content type selection. Use when you need academic papers, GitHub repositories, research content, or spec... It is an AI Agent Skill for Claude Code / OpenClaw, with 146 downloads so far.
How do I install exa search?
Run "/install exa-search-pro" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is exa search free?
Yes, exa search is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does exa search support?
exa search is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created exa search?
It is built and maintained by claw0x (@kennyzir); the current version is v1.0.0.