wechat-channels/v2/video-detail
Get the full detail of a WeChat Channels video (media address `media` + `decode_key`).. Three input options, **choose one, priority object_id > export_id > share_url**.
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-channels/v2/video-detailInput Schema
5 parameters · 0 required · 5 optional
| Parameter | Type | Required | Description |
|---|---|---|---|
raw | boolean | Optional | Optional, default True. True=raw response; False=simplified parsed structure (recommended for media download). |
export_id | union | Optional | Second priority, optional. `exportId` from search results (must start with `export/`). Search results often only carry `exportId` without a plain object_id — pass export_id directly in that case (it expires, use it soon). |
object_id | union | Optional | Highest priority, optional. Video objectId (numeric), e.g. `14941130915890399732`. Obtainable from the video `id` of `fetch_user_videos` / `fetch_collection_videos`. |
share_url | union | Optional | Last, optional. Channels share URL (`https://weixin.qq.com/sph/…`), e.g. `https://weixin.qq.com/sph/AH3sCoIPhH`. Used only when both object_id and export_id are empty. |
object_nonce_id | union | Optional | Optional. `feedNonceId` (numeric) from search results, pairs with the above to improve hit rate. |
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-channels/v2/video-detail",
"prompt": "a beautiful sunset over mountains"
}'API README
Get WeChat Channels Video Detail
Get the full detail of a WeChat Channels video (media address media + decode_key). Three input options, choose one, priority object_id > export_id > share_url. It is suitable for wechat-channels workflows.
Capability
Get the full detail of a WeChat Channels video (media address media + decode_key). Three input options, choose one, priority object_id > export_id > share_url. It helps applications, agents, and automated workflows turn that capability into repeatable tasks and useful downstream experiences.
Common use cases
- Build media monitoring, content intelligence, and publishing-support workflows.
- Create repeatable integrations that pass structured results to downstream business systems.
- Support scheduled jobs, internal tools, and agent workflows with structured results.

