๐๏ธBulk Data API
Connect to the Data APIs to access 5000+ location attributes, around any lat-long or address in the country.
Bulk Data API with Latitude & Longitude
POST https://dataserving-us.geoiq.io/production/v1.0/getvariablesbulk
Headers
x-api-key*
String
Authentication key
Content-Type*
String
application/json
Request Body
lat*
Float
Latitude co-ordinates should be between -90 to 90
lng*
Float
Longitude co-ordinates should be between -180 to 180
radius*
Integer
(in meters) should be between 100 to 2000
variables*
String
Comma separated list of variables to be fetched. Maximum 50 variables can be fetched in a single call
{
"status": 200,
"body": {
"data": {
"w_pop_tt": 27950,
"p_health_hp_np": 0.25045,
"p_restaurant_rt_np": 1.39535,
"p_retail_gc_np": 0.93023
},
"status": 200
}
}Sample Request
Sample Response
Bulk Data API with Address
POST https://dataserving-us.geoiq.io/production/v1.0/getvariablesbulk
Headers
x-api-key*
String
Authentication key
Content-Type*
String
application/json
Request Body
address*
String
address of the place
pincode
String
pincode of the place
radius*
Integer
(in meters) should be between 100 to 2000
variables*
String
Comma separated list of variables to be fetched. Maximum 50 variables can be fetched in a single call
Sample Request
Sample Response
Last updated
Was this helpful?