## Query features in a dataset `$client->datasets->features(string id, ?string cursor, ?int limit): FeatureCollection` **get** `/api/v1/datasets/{id}/features` Query features in a dataset ### Parameters - `id: string` - `cursor?:optional string` Cursor for pagination - `limit?:optional int` Maximum results ### Returns - `FeatureCollection` - `list features` - `Type type` ### Example ```php datasets->features( 'id', cursor: 'cursor', limit: 0 ); var_dump($featureCollection); ```