Get Dataset
get_datasetPull rows from a CMS dataset by datasetId (UUID from search_datasets). Returns an array of row objects whose keys are the dataset columns. Supports paging (size/offset), full-text keyword search across the dataset, and exact-match column filters via filters: {COLUMN: VALUE} (column names match the keys in returned rows, e.g. {"State": "TX"}).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| size | No | Rows per page (default 100). | |
| offset | No | Row offset for paging (default 0). | |
| filters | No | Optional exact-match column filters, e.g. {"State": "TX", "Provider_Type": "Hospital"}. Becomes filter[COLUMN]=VALUE. | |
| keyword | No | Optional full-text search across all columns. | |
| datasetId | Yes | Dataset UUID from search_datasets, e.g. "9767cb68-8ea9-4f0b-8179-9431abc89f11". |