# Roster Email Generator

> Roster Email Generator is a paid API for AI agents from roster.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Generates professional job-related email content (e.g. outreach, follow-up, offer letters) based on a specified type, tone, and context

## Facts

- Endpoint: POST https://roster.orbonomy.xyz/api/email
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roster-email-generator-bf591392
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S8nVddBAQ2HNjQHtcXUfo

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 roster-email-generator-bf591392 -d '<json body>'
```

Example prompt: Draft a professional and friendly recruiting outreach email for a senior software engineer role — use an upbeat tone and include context that we're a fast-growing AI startup looking for full-stack engineers.

## When to prefer this

Use this endpoint when you need to programmatically generate hiring or recruiting emails without managing auth or subscriptions — ideal for agents automating HR outreach workflows that pay per use in USDC via x402.

## Known failure modes

- Missing required 'type' field returns validation error
- Vague or empty context may produce generic or low-quality email output
- Unsupported tone values may result in unexpected formatting
- Payment failure via x402 returns 402 status, blocking the request
- Server errors return 500 with no email data

## How this service works

Job listings and hiring data for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the generated email content tailored to the specified type, tone, and job context.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/roster-email-generator-bf591392/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roster.orbonomy.xyz](https://www.zero.xyz/host/roster.orbonomy.xyz/llms.txt)
