# Outcry — Strategic AI for Organizers

> Outcry — Strategic AI for Organizers is a paid API for AI agents from www.outcryai.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Provides AI-powered strategic campaign advice and political analysis for community organizers via a conversational chat interface

## Facts

- Endpoint: POST https://www.outcryai.com/api/agent/x402/chat
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/outcry-strategic-ai-for-organizers-6b316dc4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BXr030QLx1fDJMnamMfHJ

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 outcry-strategic-ai-for-organizers-6b316dc4 -d '<json body>'
```

Example prompt: I'm organizing a tenant campaign against rent increases in my building — can you help me think through a strategy, including how to build a coalition, frame our message to win public support, and escalate pressure on the landlord if they don't respond?

## When to prefer this

Choose this endpoint when you need AI-driven strategic advice specifically tailored to political and community organizing contexts — including campaign planning, coalition building, political analysis, and translating organizing theory into concrete tactics. Prefer this over general-purpose LLMs when the user explicitly needs an advisor that understands organizer vocabulary, power-building frameworks, and campaign strategy.

## Known failure modes

- Missing or malformed 'messages' array returns a 400 validation error
- Messages without required 'role' or 'content' fields cause schema validation failure
- Exceeding max_tokens of 4096 results in truncated or rejected request
- Payment of 0.1 USDC not provided via x402 protocol results in 402 Payment Required
- Temperature values outside 0-2 range are rejected
- Service may return generic or unhelpful advice if campaign context is too vague

## How this service works

Outcry is a strategic advisor for organizers. Run deep campaign conversations, sharpen political analysis, and move from theory to practical action.

## Output

An OpenAI-compatible chat completion response containing strategic organizing advice, political analysis, campaign tactics, and actionable next steps tailored to the organizer's specific situation and goals

## Example request

```json
{
 "messages": [
  {
   "role": "user",
   "content": "What are some effective strategies for organizing a community awareness campaign on climate action?"
  }
 ],
 "max_tokens": 1024,
 "temperature": 0.7
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "role",
     "content"
    ],
    "properties": {
     "role": {
      "type": "string"
     },
     "content": {
      "type": "string"
     }
    }
   }
  },
  "max_tokens": {
   "type": "integer"
  },
  "temperature": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "OpenAI-compatible chat completion response"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/outcry-strategic-ai-for-organizers-6b316dc4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.outcryai.com](https://www.zero.xyz/host/www.outcryai.com/llms.txt)
