Applications - Application Information



Endpoint

GET /v1.1/app/info

Description

Return all social sign in and registration urls for a particular api key

Parameters
required *

apiKey *  string Your API access key

Sign in with your developer account to use the console, or sign up here

Example Request

curl -v -X GET "https://api.theappreciationengine.com/v1.1/app/info?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p"
$curl = curl_init();

curl_setopt_array($curl, array( 
	CURLOPT_URL => "https://api.theappreciationengine.com/v1.1/app/info?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/app/info?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/app/info?apiKey=0a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p',
	'headers': {}
};
request(options, function (error, response) {
	if (error) throw new Error(error);
	console.log(response.body);
});

Example Response

{
"ID":1701,
"Slug":"uss-enterprise",
"PublicKey":"-----BEGIN PUBLIC KEY-----\nKNLJBHGasdfLMnkljkhvoOI8HUKNJOILJnlkJHKHB3L2JKR\n-----END PUBLIC KEY-----\n",
"Widget":{
"ID":123,
"URL":"https://theappreciationengine.com/w/js/123"
},
"Urls":[
{
"ID":"1",
"Name":"Email",
"Active":"1",
"Register":"https://theappreciationengine.com/brand/uss-enterprise/register/1",
"Login":"https://theappreciationengine.com/brand/uss-enterprise/login/1",
"Auth":"https://theappreciationengine.com/brand/uss-enterprise/auth/1",
"PaidOnly":0
},
{
"ID":"2",
"Name":"Facebook",
"Active":"1",
"Register":"https://theappreciationengine.com/brand/uss-enterprise/register/2",
"Login":"https://theappreciationengine.com/brand/uss-enterprise/login/2",
"Auth":"https://theappreciationengine.com/brand/uss-enterprise/auth/2",
"PaidOnly":0
},
{
"ID":"3",
"Name":"Spotify",
"Active":"1",
"Register":"https://theappreciationengine.com/brand/uss-enterprise/register/3",
"Login":"https://theappreciationengine.com/brand/uss-enterprise/login/3",
"Auth":"https://theappreciationengine.com/brand/uss-enterprise/auth/3",
"PaidOnly":1
}
],
"LogoutURL":"https://theappreciationengine.com/brand/uss-enterprise/logout"
}