# AdPrompt Brand Scan

> AdPrompt Brand Scan is a paid API for AI agents from x402.adprompt.io, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Analyzes a business's online presence and brand identity by scanning a website URL and returning a JSON metadata bundle with report links.

## Facts

- Endpoint: POST https://x402.adprompt.io/brand-scan
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adprompt-brand-scan-92778a7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_76Pj2sNp1wGlxUTdZ7CtX

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-brand-scan-92778a7b -d '<json body>'
```

Example prompt: Can you run a brand scan on https://www.morningbloomcoffee.com and give me a report on their online presence and brand identity?

## When to prefer this

Use this endpoint when you need a structured, machine-readable brand identity and online presence analysis for any business given only its website URL — especially useful for competitive research, onboarding new clients, or enriching marketing workflows with brand metadata.

## Known failure modes

- Invalid or unreachable website URL returns error or failed scan
- Missing required 'website' field returns 400-level validation error
- Website blocks crawling, resulting in incomplete or empty brand data
- Report view URL expires after 24 hours, becoming inaccessible
- Payment of 0.5 USDC not completed via x402 protocol results in 402 Payment Required

## How this service works

Analysis of business online presence and brand identity via website URL prompt; JSON metadata bundle.

## Output

A JSON payload containing a boolean success flag, a unique run ID and flow ID, a human-readable message, a view URL to a 24-hour-valid brand report, and a URL to the raw JSON report data.

## Example request

```json
{
 "website": "https://www.example.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "website"
 ],
 "properties": {
  "website": {
   "type": "string",
   "description": "Website URL to scan (https://...)"
  }
 }
}
```

## 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-brand-scan-92778a7b/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)
