List digital samples
curl --request GET \
--url https://api.yourproducthere.ai/v1/digital-samples \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.yourproducthere.ai/v1/digital-samples"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.yourproducthere.ai/v1/digital-samples', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.yourproducthere.ai/v1/digital-samples",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.yourproducthere.ai/v1/digital-samples"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.yourproducthere.ai/v1/digital-samples")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.yourproducthere.ai/v1/digital-samples")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"digitalSamples": [
{
"id": "d3b07384-d113-4956-a5e2-416b2a41bc3c",
"orgId": "org_123abc",
"title": "Summer Vacation",
"description": "Outdoor digital sample for summer looks",
"positiveRenderPrompt": "cinematic sunset, detailed face, 8k",
"negativeRenderPrompt": "blurry, low quality, bad hands",
"renderSeedFps": 30,
"renderVoiceConversionEnabled": true,
"renderEntryWidth": 720,
"seedVideoUrl": "https://cdn.example.com/seeds/summer.mp4",
"signedSeedVideoUrl": "https://account.r2.cloudflarestorage.com/bucket/seed-assets/sample.mp4?X-Amz-Signature=...",
"seedAssetPending": false,
"seedVideoDurationSec": 15,
"status": "ACTIVE",
"videoReviewStatus": "APPROVED",
"accountToken": "brand_nike",
"productToken": "sku_air_max_90",
"createdAt": "2026-06-20T12:00:00Z",
"updatedAt": "2026-06-20T12:05:00Z"
}
]
}{
"code": "UNAUTHORIZED",
"error": "Unauthorized"
}Digital Samples
List digital samples
Retrieve all active (non-archived) digital samples for your organization. Use query filters for embed/widget scoping.
GET
/
digital-samples
List digital samples
curl --request GET \
--url https://api.yourproducthere.ai/v1/digital-samples \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.yourproducthere.ai/v1/digital-samples"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.yourproducthere.ai/v1/digital-samples', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.yourproducthere.ai/v1/digital-samples",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.yourproducthere.ai/v1/digital-samples"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.yourproducthere.ai/v1/digital-samples")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.yourproducthere.ai/v1/digital-samples")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"digitalSamples": [
{
"id": "d3b07384-d113-4956-a5e2-416b2a41bc3c",
"orgId": "org_123abc",
"title": "Summer Vacation",
"description": "Outdoor digital sample for summer looks",
"positiveRenderPrompt": "cinematic sunset, detailed face, 8k",
"negativeRenderPrompt": "blurry, low quality, bad hands",
"renderSeedFps": 30,
"renderVoiceConversionEnabled": true,
"renderEntryWidth": 720,
"seedVideoUrl": "https://cdn.example.com/seeds/summer.mp4",
"signedSeedVideoUrl": "https://account.r2.cloudflarestorage.com/bucket/seed-assets/sample.mp4?X-Amz-Signature=...",
"seedAssetPending": false,
"seedVideoDurationSec": 15,
"status": "ACTIVE",
"videoReviewStatus": "APPROVED",
"accountToken": "brand_nike",
"productToken": "sku_air_max_90",
"createdAt": "2026-06-20T12:00:00Z",
"updatedAt": "2026-06-20T12:05:00Z"
}
]
}{
"code": "UNAUTHORIZED",
"error": "Unauthorized"
}Authorizations
Your organization API key starting with yph_sk_live_…
Query Parameters
Filter results to resources whose accountToken equals this opaque integrator id.
On digital samples this is the brand token; on actors and insta-swaps it is the creator (or brand in self-service mode).
Embed widgets should always pass this — without it, UIs show no rows.
Maximum string length:
128Filter digital samples by integrator catalog product id (productToken).
Maximum string length:
128Response
Sample list retrieved successfully
Show child attributes
Show child attributes
⌘I
