Overview
Mailchimp API lets you manage email lists, create campaigns, and track subscriber activity. Use it to sync contacts from your app and automate email marketing workflows.
Beginner Tip
Your API key encodes your data center — the suffix after the dash (e.g. "us6") must match the subdomain in your base URL: https://us6.api.mailchimp.com. Using the wrong server is the most common connection error.
Available Data
Example Response
{
"message_id": "msg_abc123def456",
"status": "delivered",
"to": "[email protected]",
"subject": "Welcome!",
"timestamp": "2025-01-15T10:30:00Z"
} Field Reference
lists Array of audience (list) objects in your Mailchimp account. lists[].id The unique string ID for this audience — used in all member and campaign endpoints. lists[].name Human-readable name of the audience. lists[].stats.member_count Number of active, subscribed contacts in the audience. lists[].stats.campaign_count Total number of campaigns sent to this audience. total_items Total number of lists in your account, regardless of the count parameter. Implementation Example
const url = "https://mailchimp.com/developer/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Apache Superset
Apache Superset's REST API lets you programmatically manage dashboards, charts, datasets, and database connections in your Superset instance.
Charity Search
Charity Search lets you look up verified US non-profit organizations by name, EIN, or keyword.
Clearbit Logo
⭐ Beginner's PickClearbit Logo returns a company logo image by domain name — no scraping required.
Instatus
Instatus API lets you programmatically create and update incidents and maintenance windows on your public status page.
mailjet
Mailjet lets you send transactional and marketing emails via a simple REST API using MJML or HTML templates.