Get all creatives
curl --request GET \
--url https://api.framen.com/vendor/{org_token}/carsimport requests
url = "https://api.framen.com/vendor/{org_token}/cars"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.framen.com/vendor/{org_token}/cars', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars")
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 creatives
List all Creative Approval Requests in your organization.
GET
/
vendor
/
{org_token}
/
cars
Get all creatives
curl --request GET \
--url https://api.framen.com/vendor/{org_token}/carsimport requests
url = "https://api.framen.com/vendor/{org_token}/cars"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.framen.com/vendor/{org_token}/cars', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars")
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 creatives
Retrieve a list of all Creative Approval Requests for your organization. This includes creatives with all statuses: pending, approved, and rejected.string
required
Your organization token (e.g.,
Org_4KmTqZnWpLx).Response
Returns an array of CAR objects. Each object contains the complete creative details, current status, and relevant timestamps.Response Schema
Array of objects with the following properties:| Field | Type | Description |
|---|---|---|
id | string | Unique CAR identifier |
status | string | Current status: pending, approved, or rejected |
advertiser_name | string | Name of the advertiser |
item | object | Creative asset object with url, width, height, duration, mime_type |
rejection_reasons | array | null | Rejection reasons if rejected, otherwise null |
custom_message | string | null | Custom rejection message if provided |
created_at | string | ISO 8601 creation timestamp |
updated_at | string | ISO 8601 last modified timestamp |
Example Request
curl -X GET "https://api.framen.com/vendor/Org_4KmTqZnWpLx/cars"
Last modified on May 6, 2026
⌘I