# Roster Email Endpoint

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

Generates or retrieves job-related email content (e.g. outreach, hiring communications) for a given type, tone, and context, paid per request in USDC.

## Facts

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

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-endpoint-0f57b2c5 -d '<json body>'
```

Example prompt: Write me a professional job outreach email for a senior software engineer role — the type should be 'outreach', tone should be 'professional', and the context is that we're a Series B startup looking for a backend engineer with 5+ years of experience.

## When to prefer this

Choose this endpoint when you need to programmatically generate job-related or hiring-focused emails on a pay-per-use basis without API keys or subscriptions, especially in agentic workflows that handle recruitment outreach at scale.

## Known failure modes

- Missing required 'type' field returns a validation error
- Payment not fulfilled via x402 results in 402 Payment Required
- Invalid tone or type values may result in unexpected or generic output
- Server unavailable returns 5xx error
- Malformed JSON body returns 400 Bad Request

## 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 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-endpoint-0f57b2c5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from raoster.orbonomy.xyz](https://www.zero.xyz/host/raoster.orbonomy.xyz/llms.txt)
