Individual Requests: http://data.schemaapp.com/{AccountID}/{*URL}
* Base64 Encoded
Example Individual Request:
Example Individual Request (pseudo-code) //create base url with AccountID var base = "https://data.schemaapp.com/" + <AccountID> + "/"; var xhr = new XMLHttpRequest(); //Create new http request Object //Encode url with base 64 encryption //if there is a query, remove query and trailing “=” from the encoded value var encodedURL = btoa(unescape(window.location.href.replace(window.location.search, ""))).replace(/=/g, ""); var api = base + encodedURL; xhr.open("GET", api, true); //Open URL xhr.setRequestHeader("x-api-key", <api_key>); //Set the API Key xhr.send(); //Send request