Documentation Index
Fetch the complete documentation index at: https://agenticadvertisingorg-changeset-release-main.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
get_creative_features
AdCP 3.0 Proposal - This task is under development for AdCP 3.0.
Use cases
- Security scanning: Detect malware, auto-redirects, credential harvesting, cloaking
- Creative quality: Evaluate brand consistency, platform optimization, guideline adherence
- Content categorization: Classify creative content against IAB Content Taxonomy or other standards
- Accessibility: Check WCAG compliance, screen reader compatibility
Request
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
creative_manifest | object | Yes | Creative manifest with format_id and assets |
feature_ids | string[] | No | Filter to specific features. If omitted, evaluates all features the agent supports. |
Response
Response fields
| Field | Description |
|---|---|
results | Array of feature evaluation results |
results[].feature_id | Which feature was evaluated |
results[].value | Feature value: boolean (binary), number (quantitative), or string (categorical) |
results[].confidence | Confidence score (0-1), when applicable |
results[].unit | Unit for quantitative values (e.g., percentage, score) |
results[].expires_at | When this evaluation expires and should be refreshed |
results[].measured_at | When this feature was evaluated |
results[].methodology_version | Version of methodology used |
results[].details | Vendor-specific details |
detail_url | URL to vendor’s full assessment. Access-controlled by the vendor. |
Error response
Async evaluation
Some evaluations (e.g., sandboxed malware scanning) take time. The agent returnsstatus: "working" and delivers results via webhook when complete. This uses the standard async task pattern — no custom status values needed.
Orchestrator logic
The orchestrator applies feature requirements on the client side, the same way property list feature requirements work:Relationship to property governance
Creative governance follows the same pattern as property governance:| Concept | Property governance | Creative governance |
|---|---|---|
| What’s evaluated | Properties (websites, apps) | Creatives (manifests) |
| Feature declarations | governance.property_features | governance.creative_features |
| Evaluation task | Property list filters | get_creative_features |
| Feature values | property-feature-value schema | Same fields (value, confidence, expires_at, etc.) |
| Detailed intelligence | Behind detail_url / methodology_url | Behind detail_url / methodology_url |