List actors
curl --request GET \
--url https://api.yourproducthere.ai/v1/actors \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.yourproducthere.ai/v1/actors"
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/actors', 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/actors",
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/actors"
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/actors")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.yourproducthere.ai/v1/actors")
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{
"actors": [
{
"id": "a1c02874-e339-4d11-8fa1-e6a2bc38c41d",
"displayName": "Corporate Professional",
"accountToken": "creator_42",
"faceAssetUrl": "https://cdn.example.com/actors/face.jpg",
"bodyAssetUrl": "https://cdn.example.com/actors/body.jpg",
"voiceClipUrl": "https://cdn.example.com/actors/voice.mp3",
"signedFaceAssetUrl": "https://account.r2.cloudflarestorage.com/bucket/identity-assets/face.png?X-Amz-Signature=...",
"signedBodyAssetUrl": "https://account.r2.cloudflarestorage.com/bucket/identity-assets/body.png?X-Amz-Signature=...",
"signedVoiceClipUrl": "https://account.r2.cloudflarestorage.com/bucket/identity-assets/voice.mp3?X-Amz-Signature=...",
"identityPrepStatus": "pending",
"identityPrepReadyAt": null,
"warnings": [
"faceAssetUrl: image dimensions below recommended 480x832"
],
"createdAt": "2026-06-20T12:00:00Z",
"updatedAt": "2026-06-20T12:05:00Z"
}
]
}{
"code": "UNAUTHORIZED",
"error": "Unauthorized"
}Actors
List actors
GET
/
actors
List actors
curl --request GET \
--url https://api.yourproducthere.ai/v1/actors \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.yourproducthere.ai/v1/actors"
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/actors', 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/actors",
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/actors"
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/actors")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.yourproducthere.ai/v1/actors")
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{
"actors": [
{
"id": "a1c02874-e339-4d11-8fa1-e6a2bc38c41d",
"displayName": "Corporate Professional",
"accountToken": "creator_42",
"faceAssetUrl": "https://cdn.example.com/actors/face.jpg",
"bodyAssetUrl": "https://cdn.example.com/actors/body.jpg",
"voiceClipUrl": "https://cdn.example.com/actors/voice.mp3",
"signedFaceAssetUrl": "https://account.r2.cloudflarestorage.com/bucket/identity-assets/face.png?X-Amz-Signature=...",
"signedBodyAssetUrl": "https://account.r2.cloudflarestorage.com/bucket/identity-assets/body.png?X-Amz-Signature=...",
"signedVoiceClipUrl": "https://account.r2.cloudflarestorage.com/bucket/identity-assets/voice.mp3?X-Amz-Signature=...",
"identityPrepStatus": "pending",
"identityPrepReadyAt": null,
"warnings": [
"faceAssetUrl: image dimensions below recommended 480x832"
],
"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:
128Response
Actor list
Show child attributes
Show child attributes
⌘I
