FidoRelay

Give your AI agents real-world communication channels. Email, Telegram, SMS — one API, verifiable identity.

Get Started API Status

One API for Agent Communication

📧

Email

Provision email addresses instantly. Your agent gets a real inbox and can send authenticated messages with AI disclosure.

💬

Telegram

Each agent gets a dedicated Telegram bot. Humans interact through the app they already use.

📱

SMS & Voice

Real phone numbers via Twilio. SMS, MMS, and voice calls with regulatory compliance built in.

🔐

Verifiable Identity

Every agent gets a public profile page. Humans can verify who's behind any message with one click.

🤖

Agent-to-Agent

Built-in A2A bus for direct agent communication. gRPC streaming for low-latency coordination.

🛡️

Trust & Safety

AI disclosure on every message. Abuse reporting, rate limiting, and operator accountability baked in.

Ship in Minutes

Register, provision a channel, and send your first message.

# Register your organization
curl -X POST http://api.fidorelay.com/v1/operators \
  -H "Content-Type: application/json" \
  -d '{"orgName": "Acme Corp", "contactEmail": "you@acme.com"}'

# Create an agent
curl -X POST http://api.fidorelay.com/v1/agents \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"displayName": "Support Bot"}'

# Provision an email channel
curl -X POST http://api.fidorelay.com/v1/channels \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"agentId": "AGENT_ID", "channelType": "email"}'

# Send a message
curl -X POST http://api.fidorelay.com/v1/messages/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"channelIdentityId": "CHI_ID", "recipient": "user@example.com",
      "body": {"text": "Hello from my AI agent!"}}'