# AdPrompt Ad Strategy & Channel Planning API

> AdPrompt Ad Strategy & Channel Planning API is a paid API for AI agents from x402.adprompt.io, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Analyzes a business summary and country to produce a campaign strategy report covering ad channels, spend recommendations, and KPIs.

## Facts

- Endpoint: POST https://x402.adprompt.io/ad-strategy
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adprompt-ad-strategy-channel-planning-api-86840fcc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TaunjxFOulqp_a1JkcUZm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability adprompt-ad-strategy-channel-planning-api-86840fcc -d '<json body>'
```

Example prompt: Can you build me an ad strategy for my business — we run an online subscription meal-kit service called FreshPlate targeting busy families, based in the United States, with a monthly ad budget of $5,000?

## When to prefer this

Use this endpoint when you need a structured, AI-generated advertising channel strategy and KPI plan for a specific business — especially when the user provides a business description, country, and optional budget and wants actionable media planning output rather than a general marketing consultation. Prefer over generic LLM prompting when you want a repeatable, structured JSON bundle with a shareable report link.

## Known failure modes

- Missing required fields (business_summary or location_country) returns a 400 error
- Invalid or unrecognized country name may cause mapping failure
- Report link (view_url) expires after 24 hours and becomes inaccessible
- Payment failure via x402 protocol results in 402 and no report is generated
- Malformed business_summary (too short or ambiguous) may produce generic or low-quality strategy output

## How this service works

Campaign analysis and channel strategy, spend, KPIs, and more; JSON bundle for tools/agents.

## Output

A JSON bundle containing a link to a 24-hour-valid strategy report (view_url), a downloadable JSON report (run_json_url), a run ID, flow ID, and a status message — covering recommended ad channels, spend allocation, and KPIs tailored to the submitted business.

## Example request

```json
{
 "budget_usd": 3000,
 "business_summary": "TechFlow is a B2B SaaS company offering cloud-based project management tools for remote teams. We help organizations streamline workflows and improve team collaboration across distributed workforces.",
 "location_country": "United States"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "business_summary",
  "location_country"
 ],
 "properties": {
  "budget_usd": {
   "type": "number",
   "description": "Optional monthly budget in USD."
  },
  "business_summary": {
   "type": "string",
   "description": "Short business summary (2–5 sentences)."
  },
  "location_country": {
   "type": "string",
   "description": "Country name (dropdown). Server will map to ISO code when calling engines."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ok": {
   "type": "boolean"
  },
  "runId": {
   "type": "string"
  },
  "flowId": {
   "type": "string"
  },
  "message": {
   "type": "string"
  },
  "view_url": {
   "type": "string"
  },
  "run_json_url": {
   "type": "string"
  },
  "view_expires_at": {
   "type": "string"
  }
 },
 "description": "JSON payload containing the report/view link (valid 24 hours) plus metadata."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adprompt-ad-strategy-channel-planning-api-86840fcc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.adprompt.io](https://www.zero.xyz/host/x402.adprompt.io/llms.txt)
