Api session query

From Tygron Support wiki
Jump to navigation Jump to search

API Endpoint: api/session/query/

GET {query}

API Endpoint: api/session/query/{query}

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_EDUCATION_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_EDUCATION_AND_MAP_IS_CURRENT?crs=3857&f=JSON&token=API_TOKEN

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_AGRICULTURE_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_AGRICULTURE_AND_MAP_IS_CURRENT?crs=3857&f=HTML&token=API_TOKEN

SELECT_COLOR_WHERE_CATEGORY_IS_PARK:

https://engine.tygron.com/api/session/query/SELECT_COLOR_WHERE_CATEGORY_IS_PARK?crs=3857&f=JSON&token=API_TOKEN

SELECT_NAME_WHERE_CATEGORY_IS_LUXE:

https://engine.tygron.com/api/session/query/SELECT_NAME_WHERE_CATEGORY_IS_LUXE?crs=3857&f=SMILE&token=API_TOKEN

SELECT_NAME_WHERE_CATEGORY_IS_NATURE:

https://engine.tygron.com/api/session/query/SELECT_NAME_WHERE_CATEGORY_IS_NATURE?crs=3857&f=ZIPJSON&token=API_TOKEN

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_INTERSECTION_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_INTERSECTION_AND_MAP_IS_CURRENT?crs=3857&f=ZIPSMILE&token=API_TOKEN

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_STUDENT_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_STUDENT_AND_MAP_IS_CURRENT?crs=3857&f=JSON&token=API_TOKEN

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_LEISURE_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_LEISURE_AND_MAP_IS_CURRENT?crs=4326&f=JSON&token=API_TOKEN

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_CURRENT?crs=28992&f=JSON&token=API_TOKEN

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_MAQUETTE:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_MAQUETTE?crs=LOCAL&f=JSON&token=API_TOKEN

POST query

API Endpoint: api/session/query/

Content-Type: application/x-www-form-urlencoded

Parameters:

Name Location Type Default value
f Query Format JSON
crs Query String EPSG:3857

POST query

API Endpoint: api/session/query/

Content-Type: application/json

Parameters:

Name Location Type Default value
f Query Format JSON
crs Query String EPSG:3857

Examples

Curl example POST:

curl 'https://engine.tygron.com/api/session/query/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '"TQL Query 1"'

Curl example multi item POST:

curl 'https://engine.tygron.com/api/session/query/' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '[ "TQL Query 1", "TQL Query 2", "TQL Query 3" ]'

JavaScript example POST:

var options = {
 method: "POST",
 headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
 body: '"TQL Query 1"'
};
fetch("https://engine.tygron.com/api/session/query/", options)
 .then(response => response.text())
 .then(result => console.log(result))
 .catch(error => console.log('error', error));

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_EDUCATION_AND_MAP_IS_CURRENT

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_EDUCATION_AND_MAP_IS_CURRENT

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_EDUCATION_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_EDUCATION_AND_MAP_IS_CURRENT?crs=3857&f=JSON&token=API_TOKEN

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_AGRICULTURE_AND_MAP_IS_CURRENT

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_AGRICULTURE_AND_MAP_IS_CURRENT

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_AGRICULTURE_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_AGRICULTURE_AND_MAP_IS_CURRENT?crs=3857&f=HTML&token=API_TOKEN

GET SELECT_COLOR_WHERE_CATEGORY_IS_PARK

API Endpoint: api/session/query/SELECT_COLOR_WHERE_CATEGORY_IS_PARK

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_COLOR_WHERE_CATEGORY_IS_PARK:

https://engine.tygron.com/api/session/query/SELECT_COLOR_WHERE_CATEGORY_IS_PARK?crs=3857&f=JSON&token=API_TOKEN

GET SELECT_NAME_WHERE_CATEGORY_IS_LUXE

API Endpoint: api/session/query/SELECT_NAME_WHERE_CATEGORY_IS_LUXE

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_NAME_WHERE_CATEGORY_IS_LUXE:

https://engine.tygron.com/api/session/query/SELECT_NAME_WHERE_CATEGORY_IS_LUXE?crs=3857&f=SMILE&token=API_TOKEN

GET SELECT_NAME_WHERE_CATEGORY_IS_NATURE

API Endpoint: api/session/query/SELECT_NAME_WHERE_CATEGORY_IS_NATURE

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_NAME_WHERE_CATEGORY_IS_NATURE:

https://engine.tygron.com/api/session/query/SELECT_NAME_WHERE_CATEGORY_IS_NATURE?crs=3857&f=ZIPJSON&token=API_TOKEN

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_INTERSECTION_AND_MAP_IS_CURRENT

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_INTERSECTION_AND_MAP_IS_CURRENT

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_INTERSECTION_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_INTERSECTION_AND_MAP_IS_CURRENT?crs=3857&f=ZIPSMILE&token=API_TOKEN

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_STUDENT_AND_MAP_IS_CURRENT

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_STUDENT_AND_MAP_IS_CURRENT

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_STUDENT_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_STUDENT_AND_MAP_IS_CURRENT?crs=3857&f=JSON&token=API_TOKEN

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_LEISURE_AND_MAP_IS_CURRENT

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_LEISURE_AND_MAP_IS_CURRENT

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_LEISURE_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_LEISURE_AND_MAP_IS_CURRENT?crs=4326&f=JSON&token=API_TOKEN

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_CURRENT

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_CURRENT

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_CURRENT:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_CURRENT?crs=28992&f=JSON&token=API_TOKEN

GET SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_MAQUETTE

API Endpoint: api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_MAQUETTE

Parameters:

Name Location Type Default value
query Path String
value Query String 0.0
f Query Format JSON
validate Query boolean false
crs Query String EPSG:3857

Examples

SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_MAQUETTE:

https://engine.tygron.com/api/session/query/SELECT_FLOORSIZE_WHERE_CATEGORY_IS_HEALTHCARE_AND_MAP_IS_MAQUETTE?crs=LOCAL&f=JSON&token=API_TOKEN

See also