youdotcom-api
Integrate You.com APIs (Research, Search, Contents) into any language using direct HTTP calls — no SDK required. - MANDATORY TRIGGERS: YDC API, You.com API integration, ydc-api, direct API integration, no SDK, Research API, youdotcom API, you.com REST API - Use when: developer wants to call You.com APIs directly without an SDK wrapper
What this skill does
# Integrate You.com APIs Directly
Build applications that call You.com APIs using standard HTTP clients — no SDK required. The APIs use simple REST endpoints with optional API key authentication — the Search API allows 100 free searches per day without an API key.
You.com provides three APIs that serve different needs:
- **Research API** — Ask a complex question, get a synthesized Markdown answer with inline citations. The API autonomously runs multiple searches, reads pages, cross-references sources, and reasons over the results. One call replaces an entire RAG pipeline.
- **Search API** — Get raw web and news results for a query (100 free searches/day without an API key). You control what happens with the results — feed them into your own LLM, build a custom UI, or process them programmatically.
- **Contents API** — Extract full page content (HTML, Markdown, metadata) from specific URLs. Useful for deep-reading pages found via Search or for crawling known URLs.
## Choose Your Path
**Path A: Research API** — One call to get a cited, synthesized answer to any question
**Path B: Search + Contents** — Raw building blocks for custom search pipelines and data extraction
## Decision Point
**Ask: Do you need a ready-to-use answer with citations, or raw search results you'll process yourself?**
- **Synthesized answer** → Path A (recommended for most use cases, and easier to use)
- **Raw results / custom processing** → Path B
**Also ask:**
1. What language are you using?
2. Where should the code be saved?
3. What are you building? (See [Use Cases](#use-cases) below)
4. What testing framework do you use?
---
## API Reference
The Search API allows **100 free searches per day** without an API key. After the free tier is exhausted, or for Research and Contents APIs, authenticate with the `X-API-Key` header using a You.com API key. Get one for free at https://you.com/platform.
JSON Schemas for parameters and responses:
| Endpoint | Input Schema | Output Schema |
|----------|-------------|---------------|
| Search | [search.input.schema.json](assets/search.input.schema.json) | [search.output.schema.json](assets/search.output.schema.json) |
| Research | [research.input.schema.json](assets/research.input.schema.json) | [research.output.schema.json](assets/research.output.schema.json) |
| Contents | [contents.input.schema.json](assets/contents.input.schema.json) | [contents.output.schema.json](assets/contents.output.schema.json) |
### Research API
**Base URL:** `https://api.you.com`
**Endpoint:** `POST /v1/research`
Returns comprehensive, research-grade answers with multi-step reasoning. The API autonomously plans a research strategy, executes multiple searches, reads and cross-references sources, and synthesizes everything into a Markdown answer with inline citations. At higher effort levels, a single query can run 1,000+ reasoning turns and process up to 10 million tokens.
**Request body (JSON):**
```json
{
"input": "What are the environmental impacts of lithium mining?",
"research_effort": "standard"
}
```
| Field | Required | Type | Description |
|-------|----------|------|-------------|
| input | Yes | string | Research question or complex query (max 40,000 chars) |
| research_effort | No | string | `lite`, `standard` (default), `deep`, `exhaustive` |
**Research effort levels:**
| Level | Behavior | Typical Latency | Best For |
|-------|----------|-----------------|----------|
| `lite` | Quick answer, minimal searching | <2s | Simple factual questions, low-latency applications |
| `standard` | Balanced speed and depth | 10-30s | General-purpose questions, most applications (default) |
| `deep` | More searches, deeper cross-referencing | <120s | Multi-faceted questions, competitive analysis, due diligence |
| `exhaustive` | Maximum thoroughness, extensive verification | <300s | High-stakes research, regulatory compliance, comprehensive reports |
**Response:**
```json
{
"output": {
"content": "# Environmental Impacts of Lithium Mining\n\nLithium mining has significant environmental consequences...[1][2]...",
"content_type": "text",
"sources": [
{
"url": "https://example.com/lithium-impact",
"title": "Environmental Impact of Lithium Extraction",
"snippets": ["Lithium extraction in South America's lithium triangle requires..."]
}
]
}
}
```
The `content` field contains Markdown with inline citation numbers (e.g. `[1]`, `[2]`) that reference the `sources` array. Every claim is traceable to a specific source URL.
### Search API
**Base URL:** `https://api.you.com`
**Endpoint:** `GET /v1/agents/search`
Returns raw web and news results for a query. Allows 100 free searches/day without an API key. Use this when you need full control over result processing — feeding results into your own LLM, building custom UIs, or applying your own ranking/filtering.
**Query parameters:**
| Parameter | Required | Type | Description |
|-----------|----------|------|-------------|
| query | Yes | string | Search terms; supports [search operators](https://docs.you.com/search/search-operators) |
| count | No | integer | Results per section (1-100, default: 10) |
| freshness | No | string | `day`, `week`, `month`, `year`, or `YYYY-MM-DDtoYYYY-MM-DD` |
| offset | No | integer | Pagination (0-9). Calculated in multiples of `count` |
| country | No | string | Country code (e.g. `US`, `GB`, `DE`) |
| language | No | string | BCP 47 language code (default: `EN`) |
| safesearch | No | string | `off`, `moderate`, `strict` |
| livecrawl | No | string | `web`, `news`, `all` — enables full content retrieval inline |
| livecrawl_formats | No | array of strings | `html` and/or `markdown` (requires livecrawl) |
| include_domains | No | array of strings | Domains to include in results (up to 500) |
| exclude_domains | No | array of strings | Domains to exclude from results (up to 500) |
| crawl_timeout | No | integer | Timeout in seconds for livecrawl (1-60, default: 10) |
**Response structure:**
```json
{
"results": {
"web": [
{
"url": "https://example.com",
"title": "Page Title",
"description": "Snippet text",
"snippets": ["..."],
"thumbnail_url": "https://...",
"page_age": "2025-06-25T11:41:00",
"authors": ["John Doe"],
"favicon_url": "https://example.com/favicon.ico",
"contents": { "html": "...", "markdown": "..." }
}
],
"news": [
{
"title": "News Title",
"description": "...",
"url": "https://...",
"page_age": "2025-06-25T11:41:00",
"thumbnail_url": "https://...",
"contents": { "html": "...", "markdown": "..." }
}
]
},
"metadata": {
"search_uuid": "942ccbdd-7705-4d9c-9d37-4ef386658e90",
"query": "...",
"latency": 0.123
}
}
```
### Contents API
**Base URL:** `https://ydc-index.io`
**Endpoint:** `POST /v1/contents`
Retrieves full webpage content in multiple formats. Use after Search to deep-read specific pages, or independently to extract content from known URLs.
**Request body (JSON):**
```json
{
"urls": ["https://example.com/page1", "https://example.com/page2"],
"formats": ["markdown", "metadata"],
"crawl_timeout": 10
}
```
| Field | Required | Type | Description |
|-------|----------|------|-------------|
| urls | Yes | array of strings | URLs to fetch |
| formats | No | array | `html`, `markdown`, `metadata` |
| crawl_timeout | No | integer | Timeout in seconds (1-60, default: 10) |
**Response:**
```json
[
{
"url": "https://example.com/page1",
"title": "Page Title",
"html": "<html>...</html>",
"markdown": "# Page Title\n...",
"metadata": {
"site_name": "Example",
"favicon_url": "https://example.com/favicon.ico"
}
}
]
```
---
## Path A: Research API
The fastest way to add web-grounded, cited answers to any application. One API call replaces an entire search-read-synthesize pipRelated in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.