Integrate AI podcasts into your workflow with our enterprise-grade API. Create episodes programmatically, schedule live interviews, manage AI hosts, and automate publishing to any platform. Full documentation, SDKs, and developer support included with all plans.
The Mato API provides programmatic access to every feature of our platform. Build custom integrations, automate workflows, and scale your podcast operations.
Generate podcast episodes programmatically with full control over topics, hosts, and duration.
Book live AI interviews with guests, manage scheduling, and send automated invitations.
Configure host personalities, customize voice profiles, and assign hosts to shows.
Distribute episodes to Spotify, Apple Podcasts, YouTube, and custom destinations automatically.
Retrieve detailed performance metrics, listener data, and engagement insights via API.
Get started with just a few lines of code. Install our SDK and create your first AI-hosted podcast episode programmatically.
const mato = require('@mato/sdk');
// Initialize with your API key
mato.init({ apiKey: 'your_api_key' });
// Create a new episode
const episode = await mato.episodes.create({
host: 'maya-conversational',
topic: 'AI in Healthcare',
duration: '15min',
style: 'interview'
});
// Schedule a live interview with a guest
const interview = await mato.interviews.schedule({
episodeId: episode.id,
guestEmail: 'expert@company.com',
scheduledAt: '2026-02-15T14:00:00Z'
});
console.log('Interview scheduled:', interview.joinUrl);The Mato API supports multiple authentication methods to fit your integration needs. All API requests require authentication and are encrypted using TLS 1.3.
Simple bearer token authentication for server-to-server integrations. Generate keys in your dashboard.
Full OAuth 2.0 flow for applications acting on behalf of users. Supports authorization code and client credentials grants.
Fine-grained access control with scopes for episodes, hosts, publishing, analytics, and webhooks.
# Using API Key
curl https://api.heymato.com/v1/episodes \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
# Response
{
"data": [
{
"id": "ep_8x7k2m...",
"title": "AI in Healthcare",
"status": "published",
"duration": "15:42",
"created_at": "2026-02-04"
}
],
"has_more": true
}RESTful endpoints for every aspect of podcast creation, management, and distribution. All endpoints return JSON and support pagination.
Create, retrieve, update, and delete podcast episodes. Supports both AI-generated content and live interview scheduling.
POST /v1/episodesGET /v1/episodes/:idPATCH /v1/episodes/:idBrowse available AI hosts, configure personalities, customize voice profiles, and manage host assignments.
GET /v1/hostsGET /v1/hosts/:idPOST /v1/hosts/customizeDistribute episodes to major platforms including Spotify, Apple Podcasts, YouTube, and custom RSS feeds.
POST /v1/publishGET /v1/publish/status/:idGET /v1/destinationsAccess detailed performance metrics, listener demographics, engagement data, and trend analysis.
GET /v1/analytics/episodes/:idGET /v1/analytics/shows/:idGET /v1/analytics/audienceReceive real-time notifications for episode completion, publishing status, interview events, and more.
episode.createdepisode.publishedinterview.completedOfficial client libraries for popular languages and frameworks. Fully typed, well-documented, and regularly updated.
Full-featured SDK with TypeScript support. Works in Node.js, Deno, and browser environments.
Async-first Python client with Pydantic models. Compatible with Python 3.8+ and popular frameworks.
Direct HTTP access for any language or platform. OpenAPI specification available for code generation.
Generous rate limits that grow with your needs. Real-time usage tracking in your dashboard with alerts before you hit limits.
| Plan | Requests/min | Episodes/month | Concurrent Jobs |
|---|---|---|---|
| Business | 100 | 50 | 5 |
| Network | 500 | 200 | 20 |
| Enterprise | Unlimited | Unlimited | Custom |
Access full API documentation, code examples, and integration guides in our developer portal.
Get your API keys today and create your first AI-hosted podcast episode. Full documentation and developer support included with all plans.