โ† All skills
Tencent SkillHub ยท Developer Tools

Neynar Inbox

Email for AI agents. Create mailboxes, send and receive emails via API. No browser, no OAuth.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Email for AI agents. Create mailboxes, send and receive emails via API. No browser, no OAuth.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

Neynar Inbox

Email service built for AI agents. Create a mailbox, get an API key, send and receive real emails - all via REST API.

1. Create a mailbox (no auth needed)

curl -X POST https://neynar-inbox-api.rish-68c.workers.dev/v1/mailboxes \ -H "Content-Type: application/json" \ -d '{"displayName": "My Agent", "username": "myagent"}' Response: { "id": "550e8400-e29b-41d4-a716-446655440000", "address": "myagent@inbox.neynar.ai", "apiKey": "fi_abc123...", "warning": "Store the apiKey securely - it cannot be retrieved again." } CRITICAL: Store the apiKey immediately. It is only returned once and cannot be recovered. Username is optional (random address if omitted). Must be at least 6 characters, alphanumeric with dots/hyphens/underscores.

2. Send an email

curl -X POST https://neynar-inbox-api.rish-68c.workers.dev/v1/emails \ -H "Authorization: Bearer fi_your_api_key" \ -H "Content-Type: application/json" \ -d '{ "to": ["recipient@example.com"], "subject": "Hello from my agent", "text": "This email was sent by an AI agent!" }'

3. Check inbox

curl https://neynar-inbox-api.rish-68c.workers.dev/v1/emails?direction=inbound \ -H "Authorization: Bearer fi_your_api_key" RECOMMENDED: If you have heartbeat, cron, or scheduling capabilities, set up polling (every 30-60 seconds) right after creating your mailbox to catch replies.

4. Search emails

curl "https://neynar-inbox-api.rish-68c.workers.dev/v1/search?q=invoice" \ -H "Authorization: Bearer fi_your_api_key"

API Reference

Base URL: https://neynar-inbox-api.rish-68c.workers.dev/v1 Authentication: Authorization: Bearer <api_key> (all endpoints except mailbox creation) MethodEndpointDescriptionPOST/v1/mailboxesCreate mailbox (no auth, returns apiKey)GET/v1/mailboxesList your mailboxDELETE/v1/mailboxes/:idDelete mailboxPOST/v1/mailboxes/:id/rotateRotate API keyPOST/v1/emailsSend emailGET/v1/emailsList emails (?limit=50&offset=0&direction=inbound)GET/v1/emails/:idGet single emailDELETE/v1/emails/:idDelete emailGET/v1/search?q=queryFull-text searchPOST/v1/webhooksRegister webhookGET/v1/webhooksList webhooksDELETE/v1/webhooks/:idRemove webhook

Email Object

{ "id": "uuid", "direction": "inbound", "from": "sender@example.com", "to": ["recipient@example.com"], "subject": "Email subject", "bodyText": "Plain text body", "bodyHtml": "<p>HTML body</p>", "status": "received", "createdAt": "2024-01-15T10:00:00Z" }

Webhooks

Register a webhook for real-time email notifications: curl -X POST https://neynar-inbox-api.rish-68c.workers.dev/v1/webhooks \ -H "Authorization: Bearer fi_your_api_key" \ -H "Content-Type: application/json" \ -d '{"url": "https://your-server.com/webhook", "events": ["email.received"]}' Verify signatures via X-Webhook-Signature header (HMAC-SHA256 of body).

Error Codes

CodeDescription400Bad request401Unauthorized - missing or invalid API key403Forbidden404Not found409Username already taken500Server error

Limits

3 mailboxes per account

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc