Get City Datasets by Query

https://smartcity.tacc.utexas.edu/CityData/?s=<state>?c=<city>?t=<topic>?q=<query_type>

Response Example:

1. {
2."title":"Household Affordability",
3."url":"https://data.austintexas.gov/stories/s/czit-acu8",
4."description":"View the results of the indicators associated with the Develop and Maintain Household Affordability throughout Austin Priority Program of Imagine Austin.",
5."last_updated":"2018-08-21T20:59:01.019Z",
6."views":"33182"
7. }

Request Example:

1. fetch("https://smartcity.tacc.utexas.edu/CityData/?s=Texas?c=Austin?t=House?q=json")
2. .then(response => response.json())
3. .then(data =>
4. {
5.console.log(data);
6.// any additional code
7. }

Request

Path Parameters
statestringrequired
U.S. state to query
citystringrequired
U.S. city to query
topicstringrequired
Subject to query
query typestringrequired
Data response type
Responses

Data accessed successfully
Body
titlestring
Name of dataset
urlstring
Accessible dataset URL
descriptionstring
Detailed description of dataset
last updatedstring
Date dataset was last updated
viewsstring
Amount of clicks the dataset has
}