🔍
Search
OfficialActiveby UniSkill Team
AI-powered web search with semantic ranking.
Description
The Search skill provides real-time access to the web with AI-powered semantic ranking. Unlike traditional keyword search, it understands the intent behind queries and returns the most contextually relevant results. Each response includes structured metadata — titles, URLs, snippets, and domain authority scores — making it ideal for use in RAG pipelines, research agents, and competitive intelligence workflows.
API Reference
Input Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Natural language search query |
max_results | number | No | Maximum number of results (default: 5, max: 20) |
include_domains | string[] | No | Whitelist of domains to include |
exclude_domains | string[] | No | Blacklist of domains to exclude |
Response Schema
| Field | Type | Description |
|---|---|---|
results[].title | string | Page title |
results[].url | string | Canonical URL |
results[].snippet | string | AI-generated summary snippet |
results[].score | number | Relevance score (0–1) |
query_time_ms | number | Server-side processing time |
Use Cases
- Stock market analysis — search latest earnings reports
- Competitive intelligence — monitor competitor announcements
- RAG pipelines — fetch up-to-date context for LLM prompts
- Research agents — automate literature reviews
Pricing
Cost per Request
1CR
Credits are deducted per successful API call.
Performance
Avg. Latency~800ms
Success Rate99.2%
Integration
curl -X POST https://api.uniskill.io/v1/search
-H "Authorization: Bearer <LOGIN_TO_VIEW_TOKEN>"
-H "Content-Type: application/json"
-d '{"query": "example"}'