Introduction

Thermostat provides a JSON based API to help you survey customers and retrieve information about your surveys.

Get Started

API calls to Thermostat are currently throttled to 200 calls per minute.

API requests should be made to the https://thermostat.io/api endpoint.

Every request will require two things:

  1. An accept header: Accept: application/json
  2. An authorization header: Authorization: bearer some-token

An example curl request with that will look like this:

curl -H "Accept: application/json" \
     -H "Authorization: Bearer some-token-here" \
     https://thermostat.io/api/foo

Next: create an API token.