# Anonymousemail — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access data from anonymousemail.me.

**Category:** Developer Tools | **Website:** [anonymousemail.me/](https://anonymousemail.me/) | **Docs:** [parse.bot/marketplace/e900e67d-3aab-46cb-bf3b-86109ce4d019/anonymousemail-me-api](https://parse.bot/marketplace/e900e67d-3aab-46cb-bf3b-86109ce4d019/anonymousemail-me-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-anonymousemail-me-api-e900e67d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### send_email

Sends an anonymous email. Fetches a fresh CSRF token and solves the Cloudflare Turnstile captcha before submitting the form to send.php. The site may rate-limit rapid submissions from the same IP. Returns the submission status and any message from the site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `from` | string | No | Sender email address. Free tier is locked to noreply@anonymousemail.me; premium allows custom addresses. |
| `fromname` | string | No | Sender display name shown in the email. |
| `subject` | string | No | Email subject line, max 60 characters. |
| `text` | string | No | Email message body. Supports HTML content. Max 10000 characters. |
| `to` | string | Yes | Recipient email address. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-anonymousemail-me-api-e900e67d/send_email \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"from":"<string>","fromname":"<string>","subject":"<string>","text":"<string>","to":"<string>"}'
```
