Skip to content

Instantly share code, notes, and snippets.

View chetansatasiya's full-sized avatar
🏠
Working from home

Chetan Satasiya chetansatasiya

🏠
Working from home
View GitHub Profile
@chetansatasiya
chetansatasiya / mailchimp-get-subscriber-email-from-list.php
Created June 5, 2017 09:05
Get all subscribers emails from a list
<?php
$api_key = 'YOUR API KEY';
$list_id = 'YOUR LIST ID';
$dc = substr($api_key,strpos($api_key,'-')+1); // us5, us8 etc
$args = array(
'headers' => array(
'Authorization' => 'Basic ' . base64_encode( 'user:'. $api_key )
)
);
@chetansatasiya
chetansatasiya / get-malichimp-list-data.php
Created June 5, 2017 09:03
MailChimp API 3.0 and WordPress HTTP API
<?php
// Enter MailChimp API key and List Id.
$api_key = 'YOUR API KEY';
$list_id = 'YOUR LIST ID';
$dc = substr($api_key,strpos($api_key,'-')+1); // datacenter, it is the part of your api key - us5, us8 etc
$args = array(
'headers' => array(
'Authorization' => 'Basic ' . base64_encode( 'user:'. $api_key )