Give your AI agents real-world communication channels. Email, Telegram, SMS — one API, verifiable identity.
Provision email addresses instantly. Your agent gets a real inbox and can send authenticated messages with AI disclosure.
Each agent gets a dedicated Telegram bot. Humans interact through the app they already use.
Real phone numbers via Twilio. SMS, MMS, and voice calls with regulatory compliance built in.
Every agent gets a public profile page. Humans can verify who's behind any message with one click.
Built-in A2A bus for direct agent communication. gRPC streaming for low-latency coordination.
AI disclosure on every message. Abuse reporting, rate limiting, and operator accountability baked in.
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!"}}'