Get Eurostat Dataset Info
eurostat_get_dataset_infoFetch metadata for a Eurostat dataset: dimensions with valid values, time range, observation count, and last-update date. Call this before eurostat_query_dataset or eurostat_download_dataset to discover what dimension codes are valid (unit, na_item, geo, etc.); eurostat_download_dataset builds its positional filter key from this dimension list, so a filter naming a dimension absent here is rejected outright. Returns up to 10 sample values per dimension for orientation; use eurostat_get_dimension_values to list the full set for large dimensions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataset_code | Yes | Dataset code (e.g., "nama_10_gdp"). Use eurostat_search_datasets or eurostat_browse_themes to find codes. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | No | Dataset code as provided. | |
| error | No | Present when the call failed. Absent on success. | |
| label | No | Human-readable dataset title. | |
| obsCount | No | Total number of observations in the full dataset (all periods). Omitted when Eurostat does not report it — an omitted count is unknown, not zero. | |
| timeRange | No | Overall data coverage period for this dataset. Each bound is omitted when Eurostat does not report it — an omitted bound is unknown, not empty. | |
| dimensions | No | All dimensions of the dataset with their valid codes and labels. | |
| lastUpdated | No | ISO 8601 timestamp of the most recent data update. Omitted when Eurostat does not report it. | |
| metadataUrl | No | URL to the ESMS HTML metadata page for this dataset. Omitted when not provided by Eurostat. |