Get all active creatives
curl --request GET \
--url https://api.framen.com/vendor/{org_token}/cars_activeimport requests
url = "https://api.framen.com/vendor/{org_token}/cars_active"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.framen.com/vendor/{org_token}/cars_active', 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.framen.com/vendor/{org_token}/cars_active",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.framen.com/vendor/{org_token}/cars_active"
req, _ := http.NewRequest("GET", url, nil)
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.framen.com/vendor/{org_token}/cars_active")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars_active")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyGet all active creatives
List active Creative Approval Requests forecasted for delivery.
GET
/
vendor
/
{org_token}
/
cars_active
Get all active creatives
curl --request GET \
--url https://api.framen.com/vendor/{org_token}/cars_activeimport requests
url = "https://api.framen.com/vendor/{org_token}/cars_active"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.framen.com/vendor/{org_token}/cars_active', 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.framen.com/vendor/{org_token}/cars_active",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.framen.com/vendor/{org_token}/cars_active"
req, _ := http.NewRequest("GET", url, nil)
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.framen.com/vendor/{org_token}/cars_active")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars_active")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyGet all active creatives
Retrieve a list of all active Creative Approval Requests that are forecasted to deliver to your screens soon. These are approved CARs from campaigns with active schedules.Purpose
This endpoint returns creatives that are actively scheduled or about to run on your screen network. Use this to:- Pre-cache assets: Download and cache creative media files before delivery
- Prepare infrastructure: Validate asset quality and availability ahead of ad delivery
- Monitor campaigns: Track which approved creatives are actively scheduled
- Optimize delivery: Ensure creative assets are available locally for fast playback
string
required
Your organization token (e.g.,
Org_4KmTqZnWpLx).Response
Returns an array of approved CAR objects with active campaigns. All creatives in this response have statusapproved.
Example Request
curl -X GET "https://api.framen.com/vendor/Org_4KmTqZnWpLx/cars_active"
Last modified on April 17, 2026