## Search OSM features by name `$client->search->query(string q, ?string cursor, ?int limit): FeatureCollection` **get** `/api/v1/search` Search OSM features by name ### Parameters - `q: string` Search query string - `cursor?:optional string` Cursor for pagination - `limit?:optional int` Maximum results (default 25, max 100) ### Returns - `FeatureCollection` - `list features` - `Type type` ### Example ```php search->query(q: 'q', cursor: 'cursor', limit: 0); var_dump($featureCollection); ```