# AdPrompt Social Presence Plan Generator

> AdPrompt Social Presence Plan Generator is a paid API for AI agents from x402.adprompt.io, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Generates a comprehensive social presence plan for a business using the AdPrompt engine, paid via x402 micropayment protocol

## Facts

- Endpoint: POST https://x402.adprompt.io/v1/social-presence-plan
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adprompt-social-presence-plan-generator-b9c9d918
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dLbVTe1fL8BF1PRSRO4AX

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-social-presence-plan-generator-b9c9d918 -d '<json body>'
```

Example prompt: Can you generate a social presence plan for my business at morningbloomcoffee.com? Save the profile for future use so I don't have to re-enter it.

## When to prefer this

Choose this endpoint when you need an AI-generated social media presence plan tailored to a specific business, especially when you have the business's website URL or an existing AdPrompt profile ID. Prefer this over generic social media advice tools when you want a structured, reportable output with a shareable report URL and the ability to save business profiles for repeat use. It is particularly well-suited for agents operating in marketing automation workflows that need to pay-per-call via x402 USDC micropayments rather than maintaining a subscription.

## Known failure modes

- 402 Payment Required — returned as x402 v2 challenge if no valid USDC payment is supplied; agent must complete x402 payment flow before retrying
- Missing required business data — if neither profile_id nor website nor manual_business_profile is supplied, the request will fail due to insufficient brand context
- Invalid wallet_address format — malformed address may cause payment or profile association errors
- Unknown profile_id — supplying a profile_id that does not exist will result in a lookup error
- Website scan failure — if the provided website is inaccessible or unscrapable, the Brand Scan step may fail, blocking plan generation

## How this service works

Public x402 API for the full AdPrompt engine and bundle catalog. Paid endpoints return an x402 v2 402 challenge until a valid payment is supplied.

## Output

Returns a queued job confirmation with a receipt ID, request ID, result URL pointing to /results, a report URL to fetch the full AdPrompt-branded social presence report once background processing completes, and optionally a saved business profile with name, website, and profile ID. The business context and adprompt signature objects are also included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "website": {
   "type": "string",
   "description": "If no profile is available, this adds a required paid Brand Scan."
  },
  "profile_id": {
   "type": "string"
  },
  "save_profile": {
   "type": "boolean"
  },
  "wallet_address": {
   "type": "string"
  },
  "manual_business_profile": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ok",
  "status",
  "product_id",
  "receipt_id",
  "request_id",
  "result_url",
  "report_url"
 ],
 "properties": {
  "ok": {
   "type": "boolean",
   "const": true
  },
  "label": {
   "type": "string"
  },
  "job_id": {
   "type": "string",
   "description": "Present only for the asynchronous video product."
  },
  "status": {
   "type": "string",
   "const": "queued"
  },
  "product_id": {
   "type": "string"
  },
  "receipt_id": {
   "type": "string"
  },
  "report_url": {
   "type": "string",
   "description": "Fetch this once background processing completes for the full AdPrompt-branded report."
  },
  "request_id": {
   "type": "string"
  },
  "result_url": {
   "type": "string",
   "const": "/results"
  },
  "polling_url": {
   "type": "string",
   "description": "Present only for the asynchronous video product."
  },
  "saved_profile": {
   "type": "object",
   "properties": {
    "name": {
     "type": "string"
    },
    "website": {
     "type": "string",
     "format": "uri"
    },
    "profile_id": {
     "type": "string"
    }
   },
   "additionalProperties": true
  },
  "business_context": {
   "type": "object"
  },
  "adprompt_signature": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adprompt-social-presence-plan-generator-b9c9d918/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)
