Product Services

Manage your product catalog programmatically. Create, update, and retrieve product information to use in your videos.

GET

/products

Retrieve a list of all products in your account.

Response Example
{
  "data": [
    {
      "id": "prod_123456789",
      "name": "Wireless Headphones",
      "description": "Premium noise-canceling headphones",
      "image_url": "https://example.com/image1.jpg",
      "created_at": "2023-11-23T10:00:00Z"
    }
  ],
  "has_more": false
}
POST

/products

Create a new product in your catalog.

Request Body

FieldTypeDescription
namestringThe name of the product. Required.
descriptionstringA detailed description of the product.
image_urlstringURL of the product image. Required.
GET

/products/:id

Retrieve details of a specific product by its ID.

PATCH

/products/:id

Update an existing product. You only need to supply the fields you wish to update.

DELETE

/products/:id

Delete a product from your catalog. This action cannot be undone.