CreativesList Creatives

List Creatives

List creatives in a project.

curl -X GET "https://api.5centscdn.com/v2/ad-manager/101/creatives?page=1&limit=20&q=summer-30s" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "result": "success",
  "creatives": [
    {
      "id": "crv_9a71",
      "admanager_id": 9071,
      "name": "Summer 30s Spot",
      "creative_type": "media_file",
      "status": "active",
      "duration_seconds": 30,
      "media_url": "https://cdn.5centscdn.com/ad-manager-uploads/abc123.mp4",
      "vast_url": "https://ads.example.com/vast?id=123",
      "click_url": "https://acmecorp.com/summer-sale",
      "mime_type": "video/mp4",
      "width": 1920,
      "height": 1080,
      "bitrate": 4000000,
      "approval_status": "pending",
      "metadata": "[]",
      "created_at": "2026-01-15T10:30:00Z",
      "updated_at": "2026-02-01T08:00:00Z",
      "synced_at": "2026-02-01T08:00:00Z",
      "tracking_mode": "example_string",
      "allow_prefetch": 0,
      "vast_query_params": "[{"name": "cachebuster", "type": "from-variable", "value": "${CACHE_BUSTER}"}]",
      "ad_origin": {
        "customHeaders": [
          {
            "name": "X-Custom-Auth",
            "value": "secret-token"
          }
        ]
      },
      "skip_override": "{"skippable": true, "offset_type": "seconds", "offset_value": 30}"
    }
  ],
  "total": 28,
  "page": 1,
  "pages": 1,
  "approval_stats": {
    "pending": 3,
    "approved": 24,
    "rejected": 1
  }
}
GET
/ad-manager/{pid}/creatives
GET
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key (sent in header)

path
pidinteger
Required

ID of the Ad Manager project.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. Provide your API key in the header.

Path Parameters

pidinteger
Required

ID of the Ad Manager project.

Example:
101

Query Parameters

pageinteger
Example:
1
limitinteger
Example:
20
qstring
Example:
summer-30s

Responses

resultstring

Operation outcome.

Allowed values:successerror
creativesarray
totalinteger
pageinteger
pagesinteger
approval_statsobject

Creative counts keyed by approval status (pending, approved, rejected).