## Query features by bounding box or H3 cell `$ plaza elements query` **get** `/api/v1/features` Query features by bounding box or H3 cell ### Parameters - `--bbox: optional string` Bounding box: south,west,north,east. At least one of bbox or h3 is required. - `--cursor: optional string` Cursor for pagination - `--h3: optional string` H3 cell index. At least one of bbox or h3 is required. - `--limit: optional number` Maximum results (default 100, max 10000) - `--type: optional string` Element types (comma-separated: node,way,relation) ### Returns - `feature_collection: object { features, type }` Bare GeoJSON FeatureCollection. Pagination metadata is returned in HTTP headers (X-Limit, X-Has-More, X-Next-Cursor, X-Next-Offset, Link). - `features: array of GeoJsonFeature` - `geometry: object { 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) - `union_member_0: array of number` - `union_member_1: array of array of number` - `union_member_2: array of array of array of number` - `union_member_3: array of array of array of array of number` - `type: "Point" or "LineString" or "Polygon" or 3 more` - `"Point"` - `"LineString"` - `"Polygon"` - `"MultiPoint"` - `"MultiLineString"` - `"MultiPolygon"` - `properties: map[unknown]` - `type: "Feature"` - `"Feature"` - `id: optional string` Feature identifier (type/osm_id) - `osm_id: optional number` OpenStreetMap ID - `type: "FeatureCollection"` - `"FeatureCollection"` ### Example ```cli plaza elements query \ --api-key 'My API Key' ```