Every Strateos account has an Application Programming Interface (API) key. To view your API key, log in and select "My Account" under the drop-down menu on the top-right of the screen.

To identify a request, simply include an X-User-Email field with the email address associated with your Strateos account, an X-User-Token field with your API key and X-Organization-Id field with your organization subdomain within your headers as below.

All information is sent via https secure server; a separate key is not necessary.

headers = {
	'X-User-Email': '[email protected]',
  'X-User-Token': 'xxXxx87t09cxlkjdf9dx',
  'X-Organization-Id': '<Your org subdomain>',
  'Content-Type': 'application/json',
  'Accept': 'application/json',
}