wechat-search/v2/search-videos
Search WeChat Channels videos specifically (`video` vertical), with the result page's "duration" filter, "relevance/newest/most-liked" sort, and "time" dropdown.. Equivalent to universal search `/fetch_search` (`business...
Example output — click Run to generate your own
Send your first request
OpenAI-compatible endpoint with unified authentication and usage tracking.
https://api.sandbase.ai/v1/runwechat-search/v2/search-videosInput Schema
7 parameters · 1 required · 6 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
keyword | string | Required | Search keyword (1-100 chars) · Min length: 1 · Max length: 100 |
raw | boolean | Optional | Optional, default True. True=raw search response; False=simplified parsing. · Default: true |
sort | union | Optional | Optional, default `default`. Sort — `default`/0 (relevance) / `latest`/1 (newest) / `hot`/2 (most liked); string key or integer, invalid values rejected (400). · Default: "default" |
cursor | union | Optional | Optional. Pagination cursor, same usage as universal search `/fetch_search`. Leave empty for the first page; for the next page pass back the `cursor` from the previous response (repeat the same `duration` / `sort` / `publish_time`). |
offset | integer | Optional | Optional, default 0 (>=0). Pass `0` for the first page; use `cursor` to paginate (offset alone does not work). · Min: 0 · Default: 0 |
duration | union | Optional | Optional, default `all`. Duration tier (Channels video only) — `all`/0 / `short`/1 (<5min) / `medium`/2 (5-10min) / `long`/3 (20min+); string key or integer, invalid values rejected (400). · Default: "all" |
publish_time | union | Optional | Optional, default `all`. Publish time — `all`/0 / `day`/1 / `week`/2 / `half_year`/3; string key or integer, invalid values rejected (400). · Default: "all" |
Output Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier for the generation task |
status | string | Task status: pending, running, completed, failed, timeout |
model | string | Model used for the generation |
outputs | array | Array of output items |
outputs[].url | string | URL of the generated artifact |
outputs[].content_type | string | MIME type (e.g. image/png, video/mp4) |
error | object | null | Error details if failed, null on success |
error.type | string | Machine-readable error type code |
error.message | string | Human-readable error description |
Code Examples
Ready-to-run snippets
curl -X POST https://api.sandbase.ai/v1/run \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "wechat-search/v2/search-videos",
"raw": true,
"sort": "default",
"offset": 0,
"duration": "all",
"publish_time": "all",
"prompt": "a beautiful sunset over mountains"
}'API README
WeChat Channels Video Search
Search WeChat Channels videos specifically (video vertical), with the result page's "duration" filter, "relevance/newest/most-liked" sort, and "time" dropdown. Equivalent to universal search /fetch_search (business_type=video) plus filters. all filters are verified to work. It is suitable for wechat-search workflows.
Capability
Search WeChat Channels videos specifically (video vertical), with the result page's "duration" filter, "relevance/newest/most-liked" sort, and "time" dropdown. Equivalent to universal search /fetch_search (business_type=video) plus filters. all filters are verified to work. It helps applications, agents, and automated workflows turn that capability into repeatable tasks and useful downstream experiences.
Common use cases
- Search and discover relevant records for research, monitoring, and product experiences.
- Build media monitoring, content intelligence, and publishing-support workflows.
- Create repeatable integrations that pass structured results to downstream business systems.

