temp-email

Installation
SKILL.md

Temporary Email (tempmail.lol)

Disposable email inboxes via curl. No dependencies, no API key. Domains rotate automatically so addresses are unlikely to be blocklisted.

Create inbox

INBOX=$(curl -s -X POST https://api.tempmail.lol/v2/inbox/create)
EMAIL=$(echo "$INBOX" | jq -r .address)
TOKEN=$(echo "$INBOX" | jq -r .token)
echo "Email: $EMAIL"

Save both EMAIL and TOKEN — you need the token to check messages.

Check messages

curl -s "https://api.tempmail.lol/v2/inbox?token=$TOKEN" | jq
Related skills
Installs
3
Repository
vesely/skills
GitHub Stars
27
First Seen
Apr 6, 2026