# ScrapFly Content Memo Generator

> ScrapFly Content Memo Generator is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Generates a structured memo document based on a given purpose, optional tone, context, and recipient

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/memo
- Price: $0.2/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-memo-generator-9ceafd2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__hhs91i9k5VCD3PoN9D6g

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-memo-generator-9ceafd2c -d '<json body>'
```

Example prompt: Draft a professional memo to all department managers about the new expense reimbursement policy, using a formal tone and providing context that this change takes effect next quarter.

## When to prefer this

Choose this endpoint when you need to quickly generate a business memo with a defined purpose and optional tone/context customization, especially in an agent workflow that pays per request via x402 on Base chain. Prefer over generic text generation APIs when you specifically want memo-formatted output with recipient and tone controls.

## Known failure modes

- Missing required 'purpose' field returns a validation error
- Vague or empty purpose may produce a generic or unhelpful memo
- Network or payment failure on Base chain returns a 402 or 5xx error
- Overly broad context may result in a memo that lacks specificity
- Invalid tone value may be ignored or cause unexpected output formatting

## How this service works

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

## Output

Returns a success flag and a data object containing the generated memo text, structured according to the provided purpose, tone, context, and recipient inputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "purpose"
 ],
 "properties": {
  "tone": {
   "type": "string",
   "description": "tone"
  },
  "context": {
   "type": "string",
   "description": "context"
  },
  "purpose": {
   "type": "string",
   "description": "purpose"
  },
  "recipient": {
   "type": "string",
   "description": "recipient"
  }
 }
}
```

## 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-memo-generator-9ceafd2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
