# Roster Referral Letter Generator

> Roster Referral Letter Generator is a paid API for AI agents from rasoster.netlify.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Generates a referral letter or recommendation for a target role and company, given relationship context and achievements

## Facts

- Endpoint: POST https://rasoster.netlify.app/api/referral
- 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/roster-referral-letter-generator-a99674a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c6t5Er8VVW8VjzahDpX4h

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-referral-letter-generator-a99674a8 -d '<json body>'
```

Example prompt: Can you write a referral letter for my colleague Sarah, who is applying for a Senior Product Manager role at Stripe? We worked together for 3 years and her biggest achievement was launching a payments feature that grew revenue by 40%.

## When to prefer this

Use this endpoint when you need to programmatically generate a personalized job referral or recommendation letter for a specific role and company, especially when leveraging a known relationship or set of achievements. It is pay-per-request with no subscription required, making it suitable for on-demand, low-frequency use cases by AI agents.

## Known failure modes

- Missing required fields target_role or target_company returns a validation error
- Vague or empty achievements/relationship fields may result in a generic or low-quality referral
- Payment failure via x402 (insufficient USDC) results in a 402 Payment Required response
- Service downtime on Netlify may cause 503 or timeout errors

## 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 success flag and a data object containing the generated referral content tailored to the specified role, company, relationship, and achievements.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "target_role",
  "target_company"
 ],
 "properties": {
  "target_role": {
   "type": "string"
  },
  "achievements": {
   "type": "string"
  },
  "relationship": {
   "type": "string"
  },
  "target_company": {
   "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-referral-letter-generator-a99674a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rasoster.netlify.app](https://www.zero.xyz/host/rasoster.netlify.app/llms.txt)
