# ScrapFly Content Dispatch — Press Release & Announcement Generator

> ScrapFly Content Dispatch — Press Release & Announcement Generator is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.6/call, status unknown (last checked 2026-09-15).

Generates a formatted press release or public announcement for a company given a company name, announcement text, optional date, and contact details

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/dispatch
- Price: $0.6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-dispatch-press-release-announcement-generator-e68f2d2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BeHCa6cE3UOW9dwItgdS6

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 scrapfly-content-dispatch-press-release-announcement-generator-e68f2d2a -d '<json body>'
```

Example prompt: Draft a press release for Acme Corp announcing our new AI-powered logistics platform launching on July 15th — contact is press@acmecorp.com.

## When to prefer this

Choose this endpoint when you need to quickly generate a structured, professional press release or company announcement from minimal inputs (company name and announcement text). It is well-suited for AI agents automating PR workflows, content pipelines, or corporate communications tasks where speed and pay-per-use pricing matter.

## Known failure modes

- Missing required `company` field returns a validation error
- Missing required `announcement` field returns a validation error
- Malformed or overly short announcement text may produce low-quality output
- Payment failure via x402/Base chain results in a 402 response and no content generated
- Service unavailability on the Vercel deployment may return a 500 or timeout

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

A JSON object with a `success` boolean and a `data` object containing the generated press release or announcement content, formatted and ready for distribution or publication.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company",
  "announcement"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "date"
  },
  "company": {
   "type": "string",
   "description": "company"
  },
  "contact": {
   "type": "string",
   "description": "contact"
  },
  "announcement": {
   "type": "string",
   "description": "announcement"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-content-dispatch-press-release-announcement-generator-e68f2d2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
