Skip to content
English
  • There are no suggestions because the search field is empty.

Do You Have an API Quick Start Guide?

API Developer Quick Start 

Getting Access:

To request an API key, follow the steps detailed here. In short, review documentation for uses and reach out to us to get an API key. 

Base URL:

https://api.tractiq.com/v1/self-storage/site-analysis


Authentication:
All requests require your API key in the HTTP header:

x-api-key: YOUR_API_KEY


Example: Self-Storage Site Analysis by Address & Radius

Request:

curl -X GET "https://api.tractiq.com/v1/self-storage/site-analysis/single/address/radius?radius-in-miles=3&address=3757%20Norwood%20Dr,%20Littleton,%20CO" \

  -H "x-api-key: YOUR_API_KEY"


Sample Response:

{

  "site": {

    "input_address": "3757 Norwood Dr, Littleton, CO",

    "best_match": {

      "address": "3757 Norwood Dr, Littleton, CO 80125-9775, United States",

      "latitude": 39.55625,

      "longitude": -105.03798

    }

  },

  "data": {

    "demographics": {

      "population": 0,

      "population_projected_census": 0,

      "population_projected_census_growth_pct": 0,

      "population_projected_housing": 0,

      "population_projected_housing_growth_pct": 0,

      "median_household_income": 0

    },

    "storage_supply": {

      "gross_sqft": 0,

      "gross_sqft_projected": 0,

      "rent_sqft": 0,

      "rent_sqft_projected": 0,

      "facilities": 0,

      "facilities_projected": 0,

      "pricing": [

        {

          "climate_control": false,

          "size_category": "10x30",

          "min_street_rate": 0,

          "avg_street_rate": 0,

          "max_street_rate": 0,

          "min_web_rate": null,

          "avg_web_rate": null,

          "max_web_rate": null

        }

      ]

    },

    "incoming_housing": {

      "housing_starts": 0,

      "number_of_units": 0

    },

    "market_saturation": {

      "rentable_sqft_per_capita": 0,

      "rentable_sqft_per_capita_projected_census": 0,

      "rentable_sqft_per_capita_projected_housing": 0

    }

  }

}

Endpoint

Description

Example Parameters

/self-storage/site-analysis/single/address/radius

Get supply, rates, and demographics for a radius around an address.

radius-in-miles, address



Tip: Start small; test your query in Postman or cURL first, then integrate into your application.
For help with queries, email support@tractiq.com.