Quickstart
Get up and running with UnSearch in 5 minutes.
Quickstart
Get your first search results in under 5 minutes.
1. Get Your API Key
Sign up at unsearch.dev/signup and create an API key in the dashboard.
2. Install the SDK
Python
pip install unsearchJavaScript/TypeScript
npm install @unsearch/sdk3. Make Your First Search
Python
from unsearch import UnSearch
client = UnSearch(api_key="sk_live_your_key")
results = client.search(
query="best Python frameworks 2025",
engines=["google", "bing"],
max_results=10
)
for result in results:
print(f"{result.title}: {result.url}")JavaScript
import { UnSearch } from '@unsearch/sdk';
const client = new UnSearch({ apiKey: 'sk_live_your_key' });
const results = await client.search({
query: 'best Python frameworks 2025',
engines: ['google', 'bing'],
maxResults: 10,
});
results.forEach(r => console.log(`${r.title}: ${r.url}`));cURL
curl -X POST 'https://api.unsearch.dev/api/v1/search/' \
-H 'X-API-Key: sk_live_your_key' \
-H 'Content-Type: application/json' \
-d '{"query": "best Python frameworks 2025", "max_results": 10}'