"creative" in supported_protocols and "delivery" in its creative agent capabilities — whether that’s a dedicated creative service or a sales agent implementing the Creative Protocol.
Request Schema: /schemas/v3/creative/get-creative-delivery-request.json
Response Schema: /schemas/v3/creative/get-creative-delivery-response.json
Request Parameters
At least one scoping filter (media_buy_ids or creative_ids) is required.
| Parameter | Type | Required | Description |
|---|---|---|---|
account | account-ref | No | Account reference. Pass { "account_id": "..." } or { "brand": {...}, "operator": "..." } if the seller supports implicit resolution. Limits results to creatives within this account. |
media_buy_ids | string[] | Yes* | Filter to specific media buys by publisher ID |
creative_ids | string[] | Yes* | Filter to specific creatives by ID |
start_date | string | No | Start date for delivery period (YYYY-MM-DD, interpreted in the platform’s reporting timezone) |
end_date | string | No | End date for delivery period (YYYY-MM-DD, interpreted in the platform’s reporting timezone) |
max_variants | integer | No | Maximum variants to return per creative. Useful for generative creatives with large variant counts. |
pagination | object | No | Cursor-based pagination parameters (max_results, cursor) for the creatives array. When omitted, all matching creatives are returned. |
media_buy_ids or creative_ids must be provided.
Response
| Field | Description |
|---|---|
account_id | Account identifier (present when scoped to a specific account) |
media_buy_id | Seller’s media buy identifier (present when request was scoped to a single buy) |
currency | ISO 4217 currency code for monetary values (e.g., ‘USD’, ‘EUR’) |
reporting_period | Date range with start/end timestamps and timezone (IANA identifier — platforms report in their native timezone) |
creatives | Array of creative delivery data with variant breakdowns |
pagination | (Optional) Pagination info with max_results, cursor, and has_more. Present when the request included pagination parameters. |
Creative Object
| Field | Description |
|---|---|
creative_id | Creative identifier |
media_buy_id | Seller’s media buy identifier (present when the request spanned multiple media buys) |
format_id | Format of this creative |
totals | Aggregate delivery metrics across all variants |
variant_count | Total number of variants (may exceed variants array length when max_variants is used) |
variants | Array of variant-level delivery data (empty if creative has no variants yet) |
Variant Object
Each variant represents a specific execution: a fixed creative (Tier 1), an asset combination the platform selected (Tier 2), or a generated variant (Tier 3). For catalog-driven packages, each catalog item rendered as a distinct ad execution is a variant — the variant’s manifest includes the catalog reference with the specific item rendered.| Field | Description |
|---|---|
variant_id | Platform-assigned variant identifier |
manifest | (Optional) The rendered creative manifest — the actual output that was served, not the input assets. Contains format_id and resolved assets. Not all platforms can provide manifests for every variant. |
generation_context | (Optional, Tier 3) Input signals that triggered generation — e.g., page topic, conversation theme, query category. Platforms provide summarized/anonymized signals, not raw user input. When content context is managed through AdCP content standards, includes an artifact reference linking to the specific content artifact. Supports ext for vendor-specific context structures. |
ext | (Optional) Platform-specific data. Social platforms use this for engagement metrics (upvotes, comments, shares) that vary by platform. |
| Standard metrics | All delivery metrics (impressions, spend, clicks, ctr, etc.) |
ctr, completion_rate, roas, and cost_per_click are platform-calculated and may not equal naive division of their component fields due to rounding, attribution windows, or filtered impressions.
Tier Behavior
Tier 1: Standard Creatives
One creative maps 1:1 to one variant. The variant metrics match the creative totals.Platform engagement metrics
Social and feed-native platforms include engagement data in theext field on each variant, since engagement types vary by platform:
ext field is not standardized across platforms — each platform defines its own engagement schema. Buyers aggregating across social platforms should map platform-specific fields to a common model.
Tier 2: Asset Group Optimization
Buyer provides multiple asset alternatives using a format withselection_mode: "optimize". Platform tests combinations and returns the manifest for each variant showing which assets were selected.
Tier 3: Generative Creative
Platform generates variants from brand manifest and input contexts. Themanifest contains the generated assets — which may differ entirely from what the buyer submitted.
When the publisher uses AdCP content standards, generation_context can include an artifact reference linking the variant to the specific content (article, video, etc.) that triggered generation. Platforms can also use ext for vendor-specific context structures.
Previewing Variants
Usepreview_creative with request_type: "variant" to see what a specific variant looked like when served:
manifest, you can also pass the manifest directly to preview_creative as a standard single request to re-render it.
Relationship to delivery reporting
| Task | Protocol | What it provides |
|---|---|---|
get_media_buy_delivery | Media Buy | WHERE and HOW MUCH: impressions, spend, placement data, optional by_creative breakdown |
get_creative_delivery | Creative | WHAT RAN and HOW: variant manifests and variant-level metrics |
media_buy_id + creative_id as join keys to correlate data across both responses.
When a sales agent implements both protocols, both tasks are available on the same agent URL. See Creative capabilities on sales agents for the full pattern.
Cross-agent aggregation
When running campaigns across multiple sellers, callget_creative_delivery on each agent separately and correlate results:
- Join key: Use
creative_id(buyer-assigned) to correlate the same creative across agents. If you usedconcept_idduring upload, filter by concept to group related creatives. variant_idscope: Variant IDs are unique within an agent and creative, not globally. Two agents may generate variants with the samevariant_idvalue. Prefix with the agent URL when building aggregated dashboards.- Timezone handling: Each agent may report in its own timezone via
reporting_period.timezone. Normalize to a common timezone before aggregating metrics. max_variantsselection: Agents choose which variants to return whenmax_variantslimits the result set. Most agents prioritize by impression volume (most-served first). For representative sampling, make multiple calls with different time ranges rather than relying on a single largemax_variantsvalue.
Building a cross-agent dashboard
When aggregating delivery data from multiple agents into a unified view, follow this sequence:-
Collect: Call
get_creative_deliveryon each agent in parallel, using the samecreative_idsfilter. -
Normalize timezones: Convert each agent’s
reporting_periodto a common timezone before summing. -
Merge by
creative_id: Group results bycreative_idacross agents. Sumtotals(impressions, spend, clicks). Do not average derived metrics likectr— recompute them from the summed components. -
Prefix
variant_id: Create globally unique variant keys by combiningagent_url + variant_id(e.g.,https://sales.pinnaclemedia-example.com/var_a1b2c3). This prevents collisions when two agents assign the same variant ID independently. -
Group by
concept_id: For campaign-level roll-ups, useconcept_idto group related creatives across sizes and sellers. Pull the concept-to-creative mapping fromlist_creativeson each agent.
Capability declaration
Agents that support this task declare"delivery" in their capabilities array within list_creative_formats responses:
list_creative_formats and checking the creative_agents array for agents with "delivery" in their capabilities. This applies to any agent implementing the Creative Protocol, including sales agents.