Skip to content

Instantly share code, notes, and snippets.

@vguerrerobosch
Created February 15, 2021 16:11
Show Gist options
  • Save vguerrerobosch/8baf7c6dbed7631cbc0b7440cad15f5b to your computer and use it in GitHub Desktop.
Save vguerrerobosch/8baf7c6dbed7631cbc0b7440cad15f5b to your computer and use it in GitHub Desktop.
List interests in Mailchimp Audience
# List interest categories
curl -X GET \
'https://{server}.api.mailchimp.com/3.0/lists/{list_id}/interest-categories' \
--user 'apikey:API_KEY'
# List interests in category
curl -X GET \
'https://{server}.api.mailchimp.com/3.0/lists/{list_id}/interest-categories/{interest_category_id}/interests' \
--user 'apikey:API_KEY'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment