aterio.io
  • Introduction
  • GETTING STARTED
    • About Aterio
    • About our Data
  • Data Catalog
    • Master Table
    • Population Forecast
  • API REFERENCE
    • Introduction
    • Authentication
    • Population & Housing Forecast Data
    • Development Projects Data
  • RESOURCES
    • About our Population Forecast
    • About the Aterio Investment Score
    • About our Data Centers Dataset
    • About our Local Risk Index
  • Contact Us
  • Log In
  • Privacy Policy
  • Website Terms
Powered by GitBook
On this page
  1. API REFERENCE

Authentication

PreviousIntroductionNextPopulation & Housing Forecast Data

Last updated 1 month ago

All Aterio API endpoints require an API key for access. This key must be included in the request header using the x-api-key field. API keys are issued to verified partners and customers.

EXAMPLE

To authenticate a request, include the following header:

x-api-key: your-api-key

SAMPLE REQUEST

curl --request GET \
  --url https://api.aterio.io/v1/selected-endpoint?param1=value1&param2=value2 \
  --header 'x-api-key: your-api-key'

fetch("https://api.aterio.io/v1/selected-endpoint?param1=value1&param2=value2", {
  method: "GET",
  headers: {
    "x-api-key": "your-api-key"
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error("Error:", error));
import requests

response = requests.get(
    "https://api.aterio.io/v1/selected-endpoint",
    headers={"x-api-key": "your-api-key"},
    params={"param1": "value1"}
)

data = response.json()
print(data)

GETTING THE API KEY

To request access to the API and receive your unique key, please contact our . Pricing details will also be provided during this process.

sales team