Get a list of all-time member registration totals broken down by domain, service or country
string |
Your API access key | |
valid | string |
Filters based on whether the social channel is still valid. Put a value of 1 to show only currently valid services. |
service | string |
Social channel to filter, eg. twitter, facebook, lastfm, rdio, youtube, custom, etc |
country | string |
ISO 3166-1 alpha-2, comma separated list. eg US,CA,GB |
paid_only | boolean |
Filter to users who have a paid service attached eg. Spotify Premium |
Sign in with your developer account to use the console, or sign up here
curl -v -X GET "https://api.theappreciationengine.com/v1.1/login/stats/alltime?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p"
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.theappreciationengine.com/v1.1/login/stats/alltime?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import requests
url = "https://api.theappreciationengine.com/v1.1/login/stats/alltime?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p"
headers = {}
payload = {}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text.encode('utf8'))
var request = require('request');
var options = {
'method': 'GET',
'url': 'https://api.theappreciationengine.com/v1.1/login/stats/alltime?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p',
'headers': {}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
{
"channels":[
{
"service":"email",
"signups":"120"
},
{
"service":"spotify",
"signups":"1500"
},
{
"service":"facebook",
"signups":"600"
},
{
"service":"google",
"signups":"1000"
},
{
"service":"instagram",
"signups":"40"
}
],
"total":3260
}