Required. The resource name of the Location to list Features. Format for entityType as parent: projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType} Format for featureGroup as parent: projects/{project}/locations/{location}/featureGroups/{featureGroup}
Query parameters
filter
string
Lists the Features that match the filter expression. The following filters are supported:
valueType: Supports = and != comparisons.
createTime: Supports =, !=, <, >, >=, and <= comparisons. Values must be in RFC 3339 format.
updateTime: Supports =, !=, <, >, >=, and <= comparisons. Values must be in RFC 3339 format.
labels: Supports key-value equality as well as key presence.
Examples:
valueType = DOUBLE --> Features whose type is DOUBLE.
createTime > \"2020-01-31T15:30:00.000000Z\" OR
updateTime > \"2020-01-31T15:30:00.000000Z\" --> EntityTypes created or updated after 2020-01-31T15:30:00.000000Z.
labels.active = yes AND labels.env = prod --> Features having both (active: yes) and (env: prod) labels.
labels.env: * --> Any feature which has a label with 'env' as the key.
pageSize
integer
The maximum number of Features to return. The service may return fewer than this value. If unspecified, at most 1000 Features will be returned. The maximum value is 1000; any value greater than 1000 will be coerced to 1000.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-06-27 UTC."],[],[],null,["# Method: features.list\n\n**Full name**: projects.locations.featureGroups.features.list\n\nLists Features in a given FeatureGroup. \n\n### Endpoint\n\nget `https:``/``/{service-endpoint}``/v1``/{parent}``/features` \nWhere `{service-endpoint}` is one of the [supported service endpoints](/vertex-ai/docs/reference/rest#rest_endpoints).\n\n### Path parameters\n\n`parent` `string` \nRequired. The resource name of the Location to list Features. Format for entityType as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entityType}` Format for featureGroup as parent: `projects/{project}/locations/{location}/featureGroups/{featureGroup}`\n\n### Query parameters\n\n`filter` `string` \nLists the Features that match the filter expression. The following filters are supported:\n\n- `valueType`: Supports = and != comparisons.\n- `createTime`: Supports =, !=, \\\u003c, \\\u003e, \\\u003e=, and \\\u003c= comparisons. Values must be in RFC 3339 format.\n- `updateTime`: Supports =, !=, \\\u003c, \\\u003e, \\\u003e=, and \\\u003c= comparisons. Values must be in RFC 3339 format.\n- `labels`: Supports key-value equality as well as key presence.\n\nExamples:\n\n- `valueType = DOUBLE` --\\\u003e Features whose type is DOUBLE.\n- `createTime \u003e \\\"2020-01-31T15:30:00.000000Z\\\" OR\n updateTime \u003e \\\"2020-01-31T15:30:00.000000Z\\\"` --\\\u003e EntityTypes created or updated after 2020-01-31T15:30:00.000000Z.\n- `labels.active = yes AND labels.env = prod` --\\\u003e Features having both (active: yes) and (env: prod) labels.\n- `labels.env: *` --\\\u003e Any feature which has a label with 'env' as the key.\n`pageSize` `integer` \nThe maximum number of Features to return. The service may return fewer than this value. If unspecified, at most 1000 Features will be returned. The maximum value is 1000; any value greater than 1000 will be coerced to 1000.\n`pageToken` `string` \nA page token, received from a previous [FeaturestoreService.ListFeatures](/vertex-ai/docs/reference/rest/v1/projects.locations.featurestores.entityTypes.features/list#google.cloud.aiplatform.v1.FeaturestoreService.ListFeatures) call or [FeatureRegistryService.ListFeatures](/vertex-ai/docs/reference/rest/v1/projects.locations.featureGroups.features/list#google.cloud.aiplatform.v1.FeatureRegistryService.ListFeatures) call. Provide this to retrieve the subsequent page.\n\nWhen paginating, all other parameters provided to [FeaturestoreService.ListFeatures](/vertex-ai/docs/reference/rest/v1/projects.locations.featurestores.entityTypes.features/list#google.cloud.aiplatform.v1.FeaturestoreService.ListFeatures) or [FeatureRegistryService.ListFeatures](/vertex-ai/docs/reference/rest/v1/projects.locations.featureGroups.features/list#google.cloud.aiplatform.v1.FeatureRegistryService.ListFeatures) must match the call that provided the page token.\n`orderBy` `string` \nA comma-separated list of fields to order by, sorted in ascending order. Use \"desc\" after a field name for descending. Supported fields:\n\n- `featureId`\n- `valueType` (Not supported for FeatureRegistry feature)\n- `createTime`\n- `updateTime`\n`readMask` `string (`[FieldMask](https://protobuf.dev/reference/protobuf/google.protobuf/#field-mask)` format)` \nMask specifying which fields to read.\n\nThis is a comma-separated list of fully qualified names of fields. Example: `\"user.displayName,photo\"`.\n`latestStatsCount` `integer` \nOnly applicable for Vertex AI feature Store (Legacy). If set, return the most recent [ListFeaturesRequest.latest_stats_count](/vertex-ai/docs/reference/rest/v1/projects.locations.featureGroups.features/list#body.QUERY_PARAMETERS.latest_stats_count) of stats for each feature in response. Valid value is \\[0, 10\\]. If number of stats exists \\\u003c [ListFeaturesRequest.latest_stats_count](/vertex-ai/docs/reference/rest/v1/projects.locations.featureGroups.features/list#body.QUERY_PARAMETERS.latest_stats_count), return all existing stats.\n\n### Request body\n\nThe request body must be empty. \n\n### Response body\n\nIf successful, the response body contains an instance of [ListFeaturesResponse](/vertex-ai/docs/reference/rest/v1/ListFeaturesResponse)."]]