Skip to main content
GET
/
vendor
/
{org_token}
/
cars
Get all creatives
curl --request GET \
  --url https://api.framen.com/vendor/{org_token}/cars

Documentation Index

Fetch the complete documentation index at: https://docs.framen.com/llms.txt

Use this file to discover all available pages before exploring further.

Get all creatives

Retrieve a list of all Creative Approval Requests for your organization. This includes creatives with all statuses: pending, approved, and rejected.
org_token
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:
FieldTypeDescription
idstringUnique CAR identifier
statusstringCurrent status: pending, approved, or rejected
advertiser_namestringName of the advertiser
itemobjectCreative asset object with url, width, height, duration, mime_type
rejection_reasonsarray | nullRejection reasons if rejected, otherwise null
custom_messagestring | nullCustom rejection message if provided
created_atstringISO 8601 creation timestamp
updated_atstringISO 8601 last modified timestamp

Example Request

curl -X GET "https://api.framen.com/vendor/Org_4KmTqZnWpLx/cars"
Last modified on May 6, 2026