document
API test

/adcard/generate

POST
/adcard/generate

Request Header

parameter
type
description
required
token
required

Response Parameters

parameter
type
description
required
code
int
200
required
message
string
required

Description or Example

POST参数 ``` { "unique_angle": "china", "platforms": [ "facebook", "google", "tiktok" ], "media": [{ "mobile": "https://mgtv.com/1.mp4", "desktop": "", "type": "video" }, { "mobile": "https://mgtv.com/1.jpg", "desktop": "https://mgtv.com/1.jpg", "type": "image" } ] } ``` response结果: ``` { "code": 200, "data": { "facebook": { "call_action": "LEARN_MORE", "description": "1.Explore the vibrant culture of China! Enjoy a unique experience and travel to beautiful destinations. ", "headline": "1. Explore Chinese Culture! ", "link": "", "media": [ { "desktop": "", "mobile": "https://mgtv.com/1.mp4", "type": "video" }, { "desktop": "https://mgtv.com/1.jpg", "mobile": "https://mgtv.com/1.jpg", "type": "image" } ], "primary_text": "Discover the history and culture of China!" }, "google": { "description": [ "1.Explore the vibrant culture of China! Enjoy a unique experience and travel to beautiful destinations. ", "2.Discover the history and beauty of China! Immerse yourself in its cultural wonders and take home unforgettable memories." ], "headline": [ "1. Explore Chinese Culture! ", "2. Get to Know China Better ", "3. Discover the Wonders of China" ], "link": "" }, "tiktok": { "brand_name": "ChinaGlaze", "call_action": "LEARN_MORE", "description": "1.Explore the vibrant culture of China! Enjoy a unique experience and travel to beautiful destinations. ", "link": "", "media": [ { "desktop": "", "mobile": "https://mgtv.com/1.mp4", "type": "video" } ] } }, "error": false, "message": "", "prod": false, "redirect": "", "version": "v1" } ```