Mailchimp
Mailchimp's own marketing plan pricing: what Free, Essentials, Standard and Premium cost per month at a given contact-list size, what each band includes…
Mailchimp's own marketing plan pricing: what Free, Essentials, Standard and Premium cost per month at a given contact-list size, what each band includes (contact ceiling, monthly email sends, user seats), and the same ladder in any of the 16 currencies Mailchimp publishes.
Domain: mailchimp.com
Also known as: Mailchimp, Intuit Mailchimp
Call it directly
bowmark.providers.mailchimp.getPlanPricing({ contacts?, currency? }): Promise<mailchimpPlanPricing>Functions
| Function | What it does |
|---|---|
getPlanPricing | What Mailchimp charges for its four marketing plans. |
Types
interface mailchimpPlanTier {
contacts: number // the contact CEILING this band buys, not a count
monthlySends: number | null // emails included per month; null when unpublished
price: number | null // monthly price; null (never 0) when quote-on-request
quoteOnRequest: boolean // Mailchimp sells this band by contact, not by card
pricingId: number
offerId: string | null // null exactly when quoteOnRequest
}
interface mailchimpPlan {
plan: "free" | "essential" | "standard" | "premium"
packageId: string // e.g. "standard_monthly_plan_v0"
seats: number | "unlimited" | null // users the plan seats
billedTier: mailchimpPlanTier | null // the band `contacts` lands in; null when
// the plan does not go that big
tiers: mailchimpPlanTier[] // every published band, ascending
}
interface mailchimpPlanPricing {
contacts: number | null // echoed from the caller
currency: string // what Mailchimp PRICED in, not what was asked
currencySymbol: string
pricesAreFxEstimates: boolean // true = converted from USD at the day's rate
supportedCurrencies: string[]
disclaimers: string[] // Mailchimp's own overage / VAT footnotes
plans: mailchimpPlan[]
}