- The media family under which the format falls (e.g., Display, Video, Audio, Native)
- The creative element roles required to instantiate the format
- Technical constraints such as duration, dimensions, file types, and limits
- How the resulting creative is delivered and validated
Standard vs Custom Formats
AdCP supports two categories of formats based on authority and reuse, not capability.Standard Formats
Standard formats are predefined specifications provided by the AdCP Reference Creative Agent (https://creative.adcontextprotocol.org).
Standard formats are:
- Industry-aligned: Based on IAB format families and widely adopted conventions
- Portable: Designed to work consistently across platforms
- Validated: Pre-tested against known technical constraints
- Discoverable: Returned via
list_creative_formats - Maintained: Centrally documented and updated
- Display formats with fixed or responsive dimensions
- Video formats with standard durations and aspect ratios
- Audio formats with defined spot lengths
- Common DOOH display and video executions
Custom Formats
Custom formats are defined by publishers or platforms for inventory that cannot be accurately represented by standard formats. Custom formats may be used when there are:- Unique constraints: Non-standard dimensions, physical displays, or asset requirements
- Specialized capabilities: Platform-specific rendering or interaction support
- Premium inventory: Differentiated or bespoke ad products
- Custom validation logic: Publisher-specific review or assembly rules
Discovering Formats
Buyers discover supported formats using thelist_creative_formats task exposed by sales agents.
Formats may be sourced from:
- The sales agent itself - for custom formats
- Referenced creative agents - such as the AdCP reference agent, for standard formats
Format Authority
Each format includes anagent_url that identifies the authoritative creative agent responsible for the format:
- Complete format specifications
- Creative element requirements and constraints
- Validation rules
- Preview generation
- Canonical documentation
agent_url to retrieve definitive format information.
Format Visual Presentation
Formats may optionally include metadata to support visual browsing and selection in user interfaces.Example Showcase
Field:example_url
Purpose: Deep link to a publisher-controlled showcase
May include:
- Interactive demos
- Videos
- Multiple creative examples
- Best practices and specifications
Referencing Formats
AdCP uses structured format identifiers everywhere to avoid ambiguity and namespace collisions.Structured Format IDs (Required Everywhere)
ALL format references use structured format ID objects:- Explicit namespacing
- Collision-safe identifiers
- Schema validation
- Extensibility without breaking changes
Where Structured Format IDs Are Used
Requests:sync_creatives- Uploading creative assetsbuild_creative- Generating creatives via creative agentspreview_creative- Preview generationcreate_media_buy- When specifying format requirements
list_creatives- Returning creative detailsget_products- Product format capabilitieslist_creative_formats- Format definitions- Any response containing creative or format details
format_ids(plural) in request filters - Array of structured format_id objects
Validation Rules
All AdCP agents MUST:- ✅ Accept structured
format_idobjects in ALL contexts - ✅ Return structured
format_idobjects in ALL responses - ❌ Reject string format_ids with clear error messages
- ❌ Never use string format_ids in any API contract
Legacy Considerations
Some legacy systems may send string format_ids. Implementers have two options:- Strict validation (recommended): Reject strings immediately with clear error
- Auto-upgrade with deprecation: Accept strings temporarily, log warnings, set removal timeline
- Only accept strings for well-known formats you can map to agent URLs
- Fail loudly for unknown format strings
- Log deprecation warnings on every request
- Set and communicate a removal date (recommend 6 months maximum)
Format Structure
Formats are JSON objects with the following key fields:- format_id: Unique identifier (may be namespaced with
domain:id) - agent_url: The creative agent authoritative for this format
- type: Category (video, display, audio, native, dooh, rich_media)
- assets: Array of all asset specifications with
requiredboolean indicating mandatory vs optional - asset_role: Identifies asset purpose (hero_image, logo, cta_button, etc.)
- renders: Array of rendered outputs with dimensions - see below
Asset Discovery
Theassets array enables comprehensive asset discovery. Each asset has a required boolean:
required: true- Asset MUST be provided for a valid creativerequired: false- Asset is optional, enhances the creative when provided (e.g., companion banners, third-party tracking pixels)
Rendered Outputs and Dimensions
Formats describe one or more rendered outputs, each with defined dimensions and semantic roles. This supports:- Single-render formats
- Companion creatives
- Multi-placement outputs
- Responsive behavior
- Physical dimensions for non-personal environments
renders array. Most formats produce a single render, but some (companion ads, adaptive formats, multi-placement) produce multiple renders:
- Supports single and multi-render formats uniformly
- No string parsing required - structured dimensions
- Schema-validated dimensions
- Supports responsive and fixed formats equally
- Enables proper preview rendering
- Allows dimension-based filtering
- Supports physical units for DOOH
- Clear semantic roles for each rendered piece
Format Categories
Formats are classified under IAB format families:- Display
- Video
- Audio
- Native
Video Formats
- Standard video (15s, 30s, 60s)
- Vertical video for mobile/stories
- VAST/VPAID tags
- Interactive video
Display Formats
- Standard IAB sizes (300x250, 728x90, etc.)
- Responsive units
- Rich media and expandable
- HTML5 creative
Audio Formats
- Streaming audio (15s, 30s, 60s)
- Podcast insertion
- Companion banners
- VAST audio tags
DOOH Formats
- Digital billboards
- Transit displays
- Retail screens
- Venue-based impression tracking
Carousel/Multi-Asset Formats
- Product carousels (3-10 items)
- Story sequences
- Slideshow formats
- Frame-based structures
Multi-Asset & Frame-Based Formats
Some formats like carousels, slideshows, and stories use repeatable asset groups where each frame contains a collection of assets. See the Carousel & Multi-Asset Formats guide for complete documentation on frame-based format patterns.Format Cards
Format cards provide visual representations of creative formats for display in browsing and selection interfaces. Creative agents can optionally include card definitions that reference card formats and provide the assets needed to render attractive visual cards.Card Types
Creative agents should provide at least the standard card, and optionally a detailed card: Standard Card (format_card):
- Compact 300x400px card for format browsing
- Supports 2x density images for retina displays
- Quick visual understanding of format specs
format_card_detailed, optional):
- Responsive layout with text description alongside hero carousel showing format in context
- Markdown specifications section below
- Full format documentation similar to Yahoo’s ad specs
Structure
Rendering Cards
Cards can be rendered in two ways:- Via
preview_creative: Pass the card format and manifest to generate a rendered card - Pre-rendered: Creative agents can pre-generate cards and serve them directly
Standard Card Formats
The AdCP reference creative agent defines two standard card formats:format_card_standard(300x400px) - Compact card for format browsingformat_card_detailed(responsive) - Rich card with carousel and full specs
When to Include Format Cards
Format cards are optional but recommended for:- Visual formats (display, video, DOOH) where mockups help explain the format
- Complex formats with multiple asset requirements
- Custom formats that differ from standard specifications
- Formats where visual preview aids buyer understanding
Client Rendering Guidelines
When displaying formats in UIs, clients should follow this fallback order:- If
format_cardexists → Render card viapreview_creativeor display pre-rendered image - If no
format_cardexists → Render text-only representation (format name + description) - If card rendering fails → Gracefully fall back to text-only representation
Related Documentation
- Creative Protocol Overview - How formats, manifests, and agents work together
- Creative Manifests - Pairing assets with formats
- Asset Types - Understanding asset specifications
- Channel Guides - Detailed format documentation by media type
- Implementing Standard Format Support - For sales agents
- list_creative_formats Task - API reference for format discovery