Obtain a registration/sign-up timeline grouped by the service used to sign up
 string | 
						Your API access key | |
| domain |  string | 
						Website to associate registration with | 
| page |  string | 
						Full path to web page (must be part of existing segment) | 
| services |  string | 
						Comma separated list – eg. twitter, facebook, lastfm, rdio, youtube, custom, etc | 
| country |  string | 
						ISO 3166-1 alpha-2, comma separated list. eg US,CA,GB | 
| age |  string | 
						Filter by age (where known). Accepts range in the form 29-35 | 
| gender |  string | 
						Filter results by gender (where known). In format 'M' or 'F' | 
| period |  string | 
						In format of ' ' - eg 2 Month, 1 Day, 3 Week (default: 1 Week) | 
| start_date |  string | 
						In format of 'YYYY-MM-DD HH:MM:SS' – start of date range for results | 
| end_date |  string | 
						In format of 'YYYY-MM-DD HH:MM:SS' – end of date range for results | 
| uniquemember |  boolean | 
						data is aggregated to unique member counts | 
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/timeline?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p"
					$curl = curl_init();
curl_setopt_array($curl, array( 
	CURLOPT_URL => "https://api.theappreciationengine.com/v1.1/login/stats/timeline?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/timeline?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/timeline?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p',
	'headers': {}
};
request(options, function (error, response) {
	if (error) throw new Error(error);
	console.log(response.body);
});
					{
  "services": [
    {
      "service": "email",
      "range": [
        {
          "Date": "2020-04-24",
          "Count": 7
        },
        {
          "Date": "2020-04-25",
          "Count": 0
        },
        {
          "Date": "2020-04-26",
          "Count": 2
        },
        {
          "Date": "2020-04-27",
          "Count": 0
        },
        {
          "Date": "2020-04-28",
          "Count": 0
        },
        {
          "Date": "2020-04-29",
          "Count": 1
        },
        {
          "Date": "2020-04-30",
          "Count": 0
        },
        {
          "Date": "2020-05-01",
          "Count": 0
        }
      ],
      "ServiceTotal": 10
    },
    {
      "service": "spotify",
      "range": [
        {
          "Date": "2020-04-24",
          "Count": 1
        },
        {
          "Date": "2020-04-25",
          "Count": 0
        },
        {
          "Date": "2020-04-26",
          "Count": 0
        },
        {
          "Date": "2020-04-27",
          "Count": 0
        },
        {
          "Date": "2020-04-28",
          "Count": 0
        },
        {
          "Date": "2020-04-29",
          "Count": 3
        },
        {
          "Date": "2020-04-30",
          "Count": 5
        },
        {
          "Date": "2020-05-01",
          "Count": 0
        }
      ],
      "ServiceTotal": 9
    }
  ],
  "PeriodTotal": 19
}