post https://api-v2.pandavideo.com/assist-ai/purchase_overview
Calculates the cost and details for creating an assistant with specified videos
POST /assist-ai/purchase_overview
Detailed Description
Calculates the cost and details for creating an assistant given a set of videos and language.
HTTP Method & Path
POST /assist-ai/purchase_overview
Authentication Requirements
- Security Scheme:
PandaAuth
(apiKey) - Header:
Authorization: <your_api_token>
(no Bearer prefix)
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
Authorization | header | string | Yes | Panda API token (without Bearer prefix). |
Request Body
Schema: PurchaseOverviewRequest
Name | Type | Required | Description |
---|---|---|---|
video_ids | array of string | No | Array of video IDs to calculate cost for. |
lang | string | No | Language code. |
Example Request Body
{
"video_ids": ["video1", "video2"],
"lang": "en"
}