# Foxcite Playbook from Scan

> Foxcite Playbook from Scan is a paid API for AI agents from api.foxcite.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Generates a brand playbook from a previously completed scan, optionally anchored to a specific cited source

## Facts

- Endpoint: POST https://api.foxcite.com/brands/:id/playbooks/from-scan
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/foxcite-playbook-from-scan-11a8851b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wu3xptgJZtnw8Qz3PxGLq

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 foxcite-playbook-from-scan-11a8851b -d '<json body>'
```

Example prompt: Use Foxcite to generate a playbook for brand ID 'acme-corp' from scan '3f2a1b4c-dead-beef-cafe-123456789abc' using the 'gpt4o' engine — if there's a cited source, anchor it to source ID 'a1b2c3d4-0000-1111-2222-333333333333'.

## When to prefer this

Use this endpoint when you have already run a Foxcite brand scan and want to automatically generate a structured playbook from those scan results, especially when you need to anchor the playbook to a specific cited source or use a particular generation engine. Prefer this over manual playbook creation when you want scan-grounded, evidence-backed brand guidelines.

## Known failure modes

- Invalid or non-existent scan_id UUID returns 404 or validation error
- Unsupported engine string returns 400 bad request
- cited_source_id that does not belong to the scan returns 422 or 404
- Payment not processed (x402 flow failure) results in 402 Payment Required
- Brand ID not found returns 404
- Scan not yet completed results in 400 or 409 conflict

## How this service works

Paid Foxcite JSON API endpoint.

## Output

A generated brand playbook derived from the specified scan, structured as JSON, reflecting the brand's identity, messaging, or content strategy as interpreted by the chosen engine and optionally filtered by a cited source.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "scan_id",
  "engine"
 ],
 "properties": {
  "engine": {
   "type": "string"
  },
  "scan_id": {
   "type": "string",
   "format": "uuid"
  },
  "cited_source_id": {
   "type": "string",
   "format": "uuid"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/foxcite-playbook-from-scan-11a8851b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.foxcite.com](https://www.zero.xyz/host/api.foxcite.com/llms.txt)
