# Tempgbox — 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.

> Generate disposable email addresses on-the-fly and instantly check incoming messages—perfect for signing up to services without using your real inbox. Each temporary email lasts 24 hours and works like Gmail, requiring no registration.

**Category:** Developer Tools | **Website:** [tempgbox.net/](https://tempgbox.net/) | **Docs:** [parse.bot/marketplace/06583409-2fb3-4c63-9c28-9d63b35d99f7/tempgbox-net-api](https://parse.bot/marketplace/06583409-2fb3-4c63-9c28-9d63b35d99f7/tempgbox-net-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-tempgbox-net-api-06583409/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### generate_email

Generate a new temporary email address. Creates a fresh anonymous session, solves the Turnstile challenge, and generates a random Gmail-compatible alias that expires after 24 hours. The generated email is stored in the session for subsequent get_inbox calls.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tempgbox-net-api-06583409/generate_email \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_inbox

Get inbox messages for a previously generated temporary email address. Requires a prior generate_email call to establish the session and email context. If the email parameter is omitted, uses the email from the most recent generate_email call in the same session. Returns the list of received messages and alias status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `email` | string | No | The temporary email address to check inbox for. Must be a Gmail plus-alias format address previously generated by generate_email in the same session. If omitted, uses the email generated in the current session. |
| `encryption_key` | string | Yes | Encryption key from login response |
| `session_id` | string | Yes | Session ID from login response |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tempgbox-net-api-06583409/get_inbox \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"email":"<string>","encryption_key":"<string>","session_id":"<string>"}'
```
