# Instant Email Credentials

Your temporary email address is ready. Use these credentials to access the Mailhook API:

## Credentials
- **Agent ID**: `mh_otf20JjigE4E3vt7Ytmk38p6`
- **API Key**: `x7QQMN1oViqpn7CWqzw4kUpDg-g0528wVWX4nGcGt-k`
- **Email Address**: `ybyjej1ywa@sapphire-beetle-958.tail.me`

## Quick Access (No Auth Required)
- **Check inbox**: `GET https://mailhook.co/instant/email/ybyjej1ywa@sapphire-beetle-958.tail.me/messages.md`

## API Endpoints (Auth Required)
- **Check inbox**: `GET /api/v1/email_addresses/ea_6ab467ebb7a75266/inbound_emails`
- **Stream emails (Pro)**: `GET /api/v1/email_addresses/ea_6ab467ebb7a75266/stream`
- **Create more addresses**: `POST /api/v1/email_addresses` (with `domain_id` and `local_part`)
- **Random address**: `POST /api/v1/email_addresses/random`

## Usage Examples

### Curl
```bash
# Check inbox
curl -H "X-Agent-ID: mh_otf20JjigE4E3vt7Ytmk38p6" \
     -H "X-API-Key: x7QQMN1oViqpn7CWqzw4kUpDg-g0528wVWX4nGcGt-k" \
     "https://mailhook.co/api/v1/email_addresses/ea_6ab467ebb7a75266/inbound_emails"
```

### Python
```python
import requests

headers = {
    "X-Agent-ID": "mh_otf20JjigE4E3vt7Ytmk38p6",
    "X-API-Key": "x7QQMN1oViqpn7CWqzw4kUpDg-g0528wVWX4nGcGt-k"
}

response = requests.get(
    "https://mailhook.co/api/v1/email_addresses/ea_6ab467ebb7a75266/inbound_emails",
    headers=headers
)
```

## Important Notes
- **Free tier**: This email has shared access. Anyone who knows the address can read messages.
- **Rate limits**: Free tier limited to 50 requests per day.
- **Persistence**: Credentials are stored in a cookie. Refresh this page to see them again.
- **Alternative access**: Use query parameters: `?agent_id=mh_otf20JjigE4E3vt7Ytmk38p6&api_key=x7QQMN1oViqpn7CWqzw4kUpDg-g0528wVWX4nGcGt-k&email=ybyjej1ywa@sapphire-beetle-958.tail.me`

## Next Steps
1. Use `ybyjej1ywa@sapphire-beetle-958.tail.me` for signups, verifications, or testing
2. Poll the inbox endpoint to check for incoming emails
3. Upgrade to Pro for private emails, webhooks, and higher limits: `POST /api/v1/agents/upgrade`

---

*Generated by [Mailhook](https://mailhook.co) • [Privacy Policy](https://mailhook.co/privacy)*
