One reel's Content card, exactly the row a dally_show canvas carries, so a tap on a still in the Stage's strip can put that reel on the Stage without a new canvas.
curl --request POST \
--url https://dally.ai/v1/stage.card \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"platform": "instagram",
"content_id": "cbd78841-6529-4757-9469-dc61c9035517"
}
'import requests
url = "https://dally.ai/v1/stage.card"
payload = {
"platform": "instagram",
"content_id": "cbd78841-6529-4757-9469-dc61c9035517"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({platform: 'instagram', content_id: 'cbd78841-6529-4757-9469-dc61c9035517'})
};
fetch('https://dally.ai/v1/stage.card', 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://dally.ai/v1/stage.card",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'platform' => 'instagram',
'content_id' => 'cbd78841-6529-4757-9469-dc61c9035517'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://dally.ai/v1/stage.card"
payload := strings.NewReader("{\n \"platform\": \"instagram\",\n \"content_id\": \"cbd78841-6529-4757-9469-dc61c9035517\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://dally.ai/v1/stage.card")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"platform\": \"instagram\",\n \"content_id\": \"cbd78841-6529-4757-9469-dc61c9035517\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dally.ai/v1/stage.card")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"platform\": \"instagram\",\n \"content_id\": \"cbd78841-6529-4757-9469-dc61c9035517\"\n}"
response = http.request(request)
puts response.read_body{
"content": {
"platform": "instagram",
"content_id": "cbd78841-6529-4757-9469-dc61c9035517",
"duration_seconds": 43.093,
"frames_sheet": null,
"cut_seconds": [
5.667,
10.9
],
"usual": {
"distribution": "organic",
"reels": 1013,
"views": 24159,
"likes": 337,
"comments": 9,
"saves": null,
"shares": null,
"reach": null,
"likes_per_1k": 18.2,
"comments_per_1k": 0.6,
"stayed_pct": null,
"avg_watch_time_ms": null,
"places": {
"views": {
"place": 419,
"of": 1013
},
"likes": {
"place": 420,
"of": 1013
},
"comments": {
"place": 524,
"of": 1013
},
"likes_per_1k": {
"place": 311,
"of": 1013
},
"comments_per_1k": {
"place": 604,
"of": 1013
}
},
"strip": [
{
"content_id": "91459999-3dce-4dd4-962d-fa77bc017fa5",
"platform": "instagram",
"thumbnail_url": "https://media.dally.ai/thumbnails/91459999-3dce-4dd4-962d-fa77bc017fa5.jpg",
"views": 42308,
"likes": 613,
"comments": 11
},
{
"content_id": "cbd78841-6529-4757-9469-dc61c9035517",
"platform": "instagram",
"thumbnail_url": "https://media.dally.ai/thumbnails/cbd78841-6529-4757-9469-dc61c9035517.jpg",
"views": 40117,
"likes": 613,
"comments": 11
}
]
}
},
"request_id": "req_01j8zkq"
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}stage
stage.card
Access: public. Send a JSON body; unknown keys are rejected with 400 invalid_request (inputs are strict). Responses may gain fields additively — never remove or repurpose; ignore unknown response fields.
POST
/
v1
/
stage.card
One reel's Content card, exactly the row a dally_show canvas carries, so a tap on a still in the Stage's strip can put that reel on the Stage without a new canvas.
curl --request POST \
--url https://dally.ai/v1/stage.card \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"platform": "instagram",
"content_id": "cbd78841-6529-4757-9469-dc61c9035517"
}
'import requests
url = "https://dally.ai/v1/stage.card"
payload = {
"platform": "instagram",
"content_id": "cbd78841-6529-4757-9469-dc61c9035517"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({platform: 'instagram', content_id: 'cbd78841-6529-4757-9469-dc61c9035517'})
};
fetch('https://dally.ai/v1/stage.card', 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://dally.ai/v1/stage.card",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'platform' => 'instagram',
'content_id' => 'cbd78841-6529-4757-9469-dc61c9035517'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://dally.ai/v1/stage.card"
payload := strings.NewReader("{\n \"platform\": \"instagram\",\n \"content_id\": \"cbd78841-6529-4757-9469-dc61c9035517\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://dally.ai/v1/stage.card")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"platform\": \"instagram\",\n \"content_id\": \"cbd78841-6529-4757-9469-dc61c9035517\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dally.ai/v1/stage.card")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"platform\": \"instagram\",\n \"content_id\": \"cbd78841-6529-4757-9469-dc61c9035517\"\n}"
response = http.request(request)
puts response.read_body{
"content": {
"platform": "instagram",
"content_id": "cbd78841-6529-4757-9469-dc61c9035517",
"duration_seconds": 43.093,
"frames_sheet": null,
"cut_seconds": [
5.667,
10.9
],
"usual": {
"distribution": "organic",
"reels": 1013,
"views": 24159,
"likes": 337,
"comments": 9,
"saves": null,
"shares": null,
"reach": null,
"likes_per_1k": 18.2,
"comments_per_1k": 0.6,
"stayed_pct": null,
"avg_watch_time_ms": null,
"places": {
"views": {
"place": 419,
"of": 1013
},
"likes": {
"place": 420,
"of": 1013
},
"comments": {
"place": 524,
"of": 1013
},
"likes_per_1k": {
"place": 311,
"of": 1013
},
"comments_per_1k": {
"place": 604,
"of": 1013
}
},
"strip": [
{
"content_id": "91459999-3dce-4dd4-962d-fa77bc017fa5",
"platform": "instagram",
"thumbnail_url": "https://media.dally.ai/thumbnails/91459999-3dce-4dd4-962d-fa77bc017fa5.jpg",
"views": 42308,
"likes": 613,
"comments": 11
},
{
"content_id": "cbd78841-6529-4757-9469-dc61c9035517",
"platform": "instagram",
"thumbnail_url": "https://media.dally.ai/thumbnails/cbd78841-6529-4757-9469-dc61c9035517.jpg",
"views": 40117,
"likes": 613,
"comments": 11
}
]
}
},
"request_id": "req_01j8zkq"
}{
"error": {
"code": "invalid_request",
"message": "<string>",
"details": {}
},
"request_id": "<string>"
}Authorizations
bearerAuthapiKeyAuth
A WorkOS-dashboard-issued internal API key on Authorization: Bearer.
Body
application/json
The reel's platform as the card carries it: instagram, youtube or facebook.
Minimum string length:
1The reel's Content id, as every card carries it.
Pattern:
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$Response
Success. request_id is present on every response.
