Get a creative
curl --request GET \
--url https://api.framen.com/vendor/{org_token}/cars/{car_id}import requests
url = "https://api.framen.com/vendor/{org_token}/cars/{car_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.framen.com/vendor/{org_token}/cars/{car_id}', 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/{car_id}",
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/{car_id}"
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/{car_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars/{car_id}")
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 a creative
Retrieve a single CAR by ID.
GET
/
vendor
/
{org_token}
/
cars
/
{car_id}
Get a creative
curl --request GET \
--url https://api.framen.com/vendor/{org_token}/cars/{car_id}import requests
url = "https://api.framen.com/vendor/{org_token}/cars/{car_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.framen.com/vendor/{org_token}/cars/{car_id}', 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/{car_id}",
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/{car_id}"
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/{car_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.framen.com/vendor/{org_token}/cars/{car_id}")
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_bodyRetrieve a single Creative Approval Request by its ID. Use this to fetch detailed information about a specific creative submission.
string
required
Your organization token (e.g.,
Org_4KmTqZnWpLx).string
required
The CAR identifier (e.g.,
car_Xy7Kp2mN9qR4).Response
Returns a single CAR object with complete details including the creative asset information, current status, and timestamp.| Field | Type | Description |
|---|---|---|
car_id | string | Unique CAR identifier |
status | string | Current status: pending, approved, or rejected |
advertiser_name | string | Name of the advertiser |
cities | array | Array of targeted city names |
countries | array | Array of targeted country codes |
item | object | Creative asset object (see Overview for full schema) |
rejection_reasons | array | null | Rejection reasons if rejected, otherwise null |
custom_message | string | null | Custom rejection message if provided |
created_on | string | ISO 8601 creation timestamp |
Example Request
curl -X GET "https://api.framen.com/vendor/Org_4KmTqZnWpLx/cars/car_Xy7Kp2mN9qR4"
Example Response
{
"car_id": "car_Xy7Kp2mN9qR4",
"status": "pending",
"advertiser_name": "Acme Corporation",
"cities": ["Berlin", "Munich"],
"countries": ["DEU"],
"item": {
"url": "https://assets.example.com/creatives/acme-summer-2026.mp4",
"title": "Acme Summer Campaign",
"width": 1920,
"height": 1080,
"duration": 15,
"mimeType": "video/mp4",
"size": 2456789,
"md5": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"
},
"rejection_reasons": null,
"custom_message": null,
"created_on": "2026-03-28T14:30:00Z"
}
Error Responses
| Status | Description |
|---|---|
| 404 | CAR not found or invalid car_id |
Last modified on April 17, 2026
⌘I