Skip to content
GuidesPlaygroundDashboard

Query

Execute an Overpass QL query
POST/api/v1/overpass
Execute a SPARQL query
POST/api/v1/sparql
ModelsExpand Collapse
OverpassQuery = object { data }
data: string

Overpass QL query string

SparqlQuery = object { query }
query: string

SPARQL query string

SparqlResult = object { features, type }

GeoJSON FeatureCollection of SPARQL query results

features: array of GeoJsonFeature { geometry, properties, type, 2 more }

GeoJSON features from SPARQL query

geometry: GeoJsonGeometry { coordinates, type }
coordinates: array of number or array of array of number or array of array of array of number or array of array of array of array of number

GeoJSON coordinates array (nesting depth varies by geometry type)

One of the following:
array of number
array of array of number
array of array of array of number
array of array of array of array of number
type: "Point" or "LineString" or "Polygon" or 3 more
One of the following:
"Point"
"LineString"
"Polygon"
"MultiPoint"
"MultiLineString"
"MultiPolygon"
properties: map[unknown]
type: "Feature"
id: optional string

Feature identifier (type/osm_id)

osm_id: optional number

OpenStreetMap ID

type: "FeatureCollection"