Powerful APIs and MCP server to automate your cold email infrastructure. Provision mailboxes, manage domains, and export to 5 platforms programmatically.
Full-featured REST API with comprehensive documentation. Manage domains, mailboxes, and exports programmatically.
Receive PayPal webhook notifications for payment events and subscription changes.
Model Context Protocol server for AI agent integrations. Let your AI assistants manage email infrastructure.
Sign up for a Scale or Max plan. Navigate to Settings → Integrations to generate your API key.
ibo_live_abc123...Install our official SDK using your preferred package manager.
npm install @inboxone/sdkInitialize the client and start managing your email infrastructure.
client.domains.list()All API requests require authentication using a Bearer token in the Authorization header.
Include your API key in the Authorization header for all requests:
Authorization: Bearer ibo_live_your_api_key_hereAPI keys start with ibo_live_ for production or ibo_test_ for sandbox.
MCP keys start with mcp_ and are used for AI tool integrations.
Simple, intuitive APIs designed for developer productivity.
curl -X POST https://api.inboxone.io/inboxone/google-workspaces/mailboxes \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"domain": "techsales.io",
"email": "alex@techsales.io",
"firstName": "Alex",
"lastName": "Johnson"
}'Complete reference for all available API endpoints.
User registration, login, and token management
/inboxone/auth/registerRegister a new user account/inboxone/auth/loginEmail/password login/inboxone/auth/google-loginGoogle OAuth login/inboxone/auth/refresh-tokenRefresh access token/inboxone/auth/meGet current user profileConnect InboxOne to Claude, Cursor, Windsurf, and other AI tools using the Model Context Protocol.
Get your MCP key
Go to Settings → Integrations in your dashboard
Add configuration
Add the config to your AI tool's settings file
Start using
Manage domains and mailboxes with natural language
Add this to your MCP configuration file:
{
"mcpServers": {
"inboxone": {
"command": "npx",
"args": ["-y", "@inboxone/mcp-server"],
"env": {
"INBOXONE_MCP_KEY": "mcp_your_key"
}
}
}
}