v1

latestOpenAPI 3.0.1MIT2026-07-2638658.5 KB
Product

Create Product V2

Create a new product with URL analysis or manual input. This is Step 1 in the product video generation workflow.

post/v2/product

Request body

urlstring

Product URL to crawl information from

namestring

Product name (required if no URL)

descriptionstring

Product description and selling points

target_audiencestring

Target audience

Example request

{
  "url": "https://www.amazon.com/product/...",
  "name": "Physicians Formula Happy Booster Heart Blush",
  "description": "Brush on a radiant blushing glow...",
  "target_audience": "Beauty enthusiasts",
  "media": [
    {
      "type": 1,
      "name": "product.jpg",
      "url": "https://res.jogg.ai/media.jpg",
      "description": "Product front view"
    }
  ]
}

Response

Success

codeinteger required

Business status code:

  • 0 - Success
  • 10104 - Record not found
  • 10105 - Invalid API key
  • 18020 - Insufficient credit
  • 18025 - No permission to call APIs
  • 40000 - Parameter error
  • 50000 - System error
msgstring required

Response message

Example response

{
  "msg": "Success",
  "data": {
    "product_id": "NTQ0MTkzNjg"
  }
}