Skip to main content
POST
/
products
Create product
curl --request POST \
  --url https://rawugc.com/api/v1/products \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Hydro Flask",
  "photos": [
    "https://example.com/product.jpg"
  ],
  "messaging": "Stay hydrated in style"
}
'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Use your API key from the RawUGC dashboard. Include as: Authorization: Bearer YOUR_API_KEY

Body

application/json
name
string
required

Product name

Required string length: 1 - 200
photos
string<uri>[]
required

Array of product photo URLs

Minimum array length: 1
description
string

Product description

Maximum string length: 1000
messaging
string

Brand messaging/description for the product

Maximum string length: 5000

Response

Product created

id
string