get_account_info
Retrieve Mailchimp account details including name, contact info, total subscribers, and industry benchmarks to verify API connectivity.
Instructions
Retrieve Mailchimp account details including name, contact info, total subscribers, and industry benchmarks.
Use this to verify API connectivity or inspect account-level metrics. Typically the first call in a workflow. Do not use this as a health check; use ping instead (faster, no payload). Use list_audiences to get per-audience stats.
Returns: JSON with fields: account_name (string), email (account owner), first_name, last_name, total_subscribers (int, all audiences combined), industry_stats (object with open/click rate benchmarks for the account's industry). Returns an error object if the API key is invalid or missing.
Example: get_account_info() -> {"account_name": "My Company", "total_subscribers": 5000, "industry_stats": {"open_rate": 0.21, ...}}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |