{ "opencollection": "1.0.0", "info": { "name": "Galileo API Server annotation datasets API", "version": "1.1085.0" }, "items": [ { "info": { "name": "datasets", "type": "folder" }, "items": [ { "info": { "name": "List Datasets", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets", "params": [ { "name": "actions", "value": "", "type": "query", "description": "Actions to include in the 'permissions' field." }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List Datasets" }, { "info": { "name": "Create Dataset", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets", "params": [ { "name": "format", "value": "", "type": "query" }, { "name": "hidden", "value": "", "type": "query" } ], "body": { "type": "multipart-form", "data": [] }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Creates a standalone dataset." }, { "info": { "name": "Bulk Delete Datasets", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/datasets/bulk_delete", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Delete multiple datasets in bulk.\n\nThis endpoint allows efficient deletion of multiple datasets at once.\nIt validates permissions for each dataset in the service and provides detailed feedback about\nsuccessful and failed deletions for each dataset.\n\nParameters\n----------\ndelete_request : BulkDeleteDatasetsRequest\n Request containing list of dataset IDs to delete (max 100)\nctx : Context\n Request context including authentication information\n\nReturns\n-------\nBulkDeleteDatasetsResponse\n Det" }, { "info": { "name": "Get Dataset", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset" }, { "info": { "name": "Update Dataset", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update Dataset" }, { "info": { "name": "Delete Dataset", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Delete Dataset" }, { "info": { "name": "Query Datasets", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/query", "params": [ { "name": "actions", "value": "", "type": "query", "description": "Actions to include in the 'permissions' field." }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Datasets" }, { "info": { "name": "Get Dataset Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Content" }, { "info": { "name": "Upsert Dataset Content", "type": "http" }, "http": { "method": "PUT", "url": "https://api.galileo.ai/datasets/:dataset_id/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Rollback the content of a dataset to a previous version." }, { "info": { "name": "Update Dataset Content", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/datasets/:dataset_id/content", "headers": [ { "name": "If-Match", "value": "d89cce33-549d-4b6d-b220-afb641d859c8" } ], "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the content of a dataset.\n\nThe `index` and `column_name` fields are treated as keys tied to a specific version of the dataset.\nAs such, these values are considered immutable identifiers for the dataset's structure.\n\nEdits are applied sequentially in list order, and each edit sees the table state left by the\nprevious one. For example, after a `rename_column` edit renames `col_a` to `col_b`, any\nsubsequent `update_row` in the same request must reference the column as `col_b`, not `col_a`.\n\n" }, { "info": { "name": "Download Dataset", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/download", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Download Dataset" }, { "info": { "name": "Preview Dataset", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/:dataset_id/preview", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Preview Dataset" }, { "info": { "name": "Query Dataset Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/:dataset_id/content/query", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Dataset Content" }, { "info": { "name": "List User Dataset Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/users", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List the users with which the dataset has been shared." }, { "info": { "name": "Create User Dataset Collaborators", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/:dataset_id/users", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Create User Dataset Collaborators" }, { "info": { "name": "List Group Dataset Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/groups", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List the groups with which the dataset has been shared." }, { "info": { "name": "Create Group Dataset Collaborators", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/:dataset_id/groups", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Share a dataset with groups." }, { "info": { "name": "Update User Dataset Collaborator", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/datasets/:dataset_id/users/:user_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the sharing permissions of a user on a dataset." }, { "info": { "name": "Delete User Dataset Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/datasets/:dataset_id/users/:user_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Remove a user's access to a dataset." }, { "info": { "name": "Update Group Dataset Collaborator", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/datasets/:dataset_id/groups/:group_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "group_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the sharing permissions of a group on a dataset." }, { "info": { "name": "Delete Group Dataset Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/datasets/:dataset_id/groups/:group_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "group_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Remove a group's access to a dataset." }, { "info": { "name": "Query Dataset Versions", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/:dataset_id/versions/query", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Dataset Versions" }, { "info": { "name": "Get Dataset Version Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/versions/:version_index/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "version_index", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Version Content" }, { "info": { "name": "Update Dataset Version", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/datasets/:dataset_id/versions/:version_index", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "version_index", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update Dataset Version" }, { "info": { "name": "List Dataset Projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/projects", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List Dataset Projects" }, { "info": { "name": "Extend Dataset Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/extend", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Extends the dataset content" }, { "info": { "name": "Get Dataset Synthetic Extend Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/extend/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Synthetic Extend Status" }, { "info": { "name": "Count Datasets", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/datasets/query/count", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Count datasets visible to the current user with filtering." }, { "info": { "name": "Get Dataset Variable Preview", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/datasets/:dataset_id/variable_preview", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Return a variable preview derived from the sampled dataset input rows." }, { "info": { "name": "List Datasets", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets", "params": [ { "name": "actions", "value": "", "type": "query", "description": "Actions to include in the 'permissions' field." }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List Datasets" }, { "info": { "name": "Create Dataset", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets", "params": [ { "name": "format", "value": "", "type": "query" }, { "name": "hidden", "value": "", "type": "query" } ], "body": { "type": "multipart-form", "data": [] }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Creates a standalone dataset." }, { "info": { "name": "Bulk Delete Datasets", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/v2/datasets/bulk_delete", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Delete multiple datasets in bulk.\n\nThis endpoint allows efficient deletion of multiple datasets at once.\nIt validates permissions for each dataset in the service and provides detailed feedback about\nsuccessful and failed deletions for each dataset.\n\nParameters\n----------\ndelete_request : BulkDeleteDatasetsRequest\n Request containing list of dataset IDs to delete (max 100)\nctx : Context\n Request context including authentication information\n\nReturns\n-------\nBulkDeleteDatasetsResponse\n Det" }, { "info": { "name": "Get Dataset", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset" }, { "info": { "name": "Update Dataset", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/v2/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update Dataset" }, { "info": { "name": "Delete Dataset", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/v2/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Delete Dataset" }, { "info": { "name": "Query Datasets", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/query", "params": [ { "name": "actions", "value": "", "type": "query", "description": "Actions to include in the 'permissions' field." }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Datasets" }, { "info": { "name": "Get Dataset Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Content" }, { "info": { "name": "Upsert Dataset Content", "type": "http" }, "http": { "method": "PUT", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Rollback the content of a dataset to a previous version." }, { "info": { "name": "Update Dataset Content", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/content", "headers": [ { "name": "If-Match", "value": "d89cce33-549d-4b6d-b220-afb641d859c8" } ], "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the content of a dataset.\n\nThe `index` and `column_name` fields are treated as keys tied to a specific version of the dataset.\nAs such, these values are considered immutable identifiers for the dataset's structure.\n\nEdits are applied sequentially in list order, and each edit sees the table state left by the\nprevious one. For example, after a `rename_column` edit renames `col_a` to `col_b`, any\nsubsequent `update_row` in the same request must reference the column as `col_b`, not `col_a`.\n\n" }, { "info": { "name": "Download Dataset", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/download", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Download Dataset" }, { "info": { "name": "Preview Dataset", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/preview", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Preview Dataset" }, { "info": { "name": "Query Dataset Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/content/query", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Dataset Content" }, { "info": { "name": "List User Dataset Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/users", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List the users with which the dataset has been shared." }, { "info": { "name": "Create User Dataset Collaborators", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/users", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Create User Dataset Collaborators" }, { "info": { "name": "List Group Dataset Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/groups", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List the groups with which the dataset has been shared." }, { "info": { "name": "Create Group Dataset Collaborators", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/groups", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Share a dataset with groups." }, { "info": { "name": "Update User Dataset Collaborator", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/users/:user_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the sharing permissions of a user on a dataset." }, { "info": { "name": "Delete User Dataset Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/users/:user_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Remove a user's access to a dataset." }, { "info": { "name": "Update Group Dataset Collaborator", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/groups/:group_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "group_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the sharing permissions of a group on a dataset." }, { "info": { "name": "Delete Group Dataset Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/groups/:group_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "group_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Remove a group's access to a dataset." }, { "info": { "name": "Query Dataset Versions", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/versions/query", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Dataset Versions" }, { "info": { "name": "Get Dataset Version Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/versions/:version_index/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "version_index", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Version Content" }, { "info": { "name": "Update Dataset Version", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/versions/:version_index", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "version_index", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update Dataset Version" }, { "info": { "name": "List Dataset Projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/:dataset_id/projects", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List Dataset Projects" }, { "info": { "name": "Extend Dataset Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/v2/datasets/extend", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Extends the dataset content" }, { "info": { "name": "Get Dataset Synthetic Extend Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/v2/datasets/extend/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Synthetic Extend Status" }, { "info": { "name": "List Datasets", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets", "params": [ { "name": "actions", "value": "", "type": "query", "description": "Actions to include in the 'permissions' field." }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List Datasets" }, { "info": { "name": "Create Dataset", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets", "params": [ { "name": "format", "value": "", "type": "query" }, { "name": "hidden", "value": "", "type": "query" } ], "body": { "type": "multipart-form", "data": [] }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Creates a standalone dataset." }, { "info": { "name": "Bulk Delete Datasets", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/public/v2/datasets/bulk_delete", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Delete multiple datasets in bulk.\n\nThis endpoint allows efficient deletion of multiple datasets at once.\nIt validates permissions for each dataset in the service and provides detailed feedback about\nsuccessful and failed deletions for each dataset.\n\nParameters\n----------\ndelete_request : BulkDeleteDatasetsRequest\n Request containing list of dataset IDs to delete (max 100)\nctx : Context\n Request context including authentication information\n\nReturns\n-------\nBulkDeleteDatasetsResponse\n Det" }, { "info": { "name": "Get Dataset", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset" }, { "info": { "name": "Update Dataset", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update Dataset" }, { "info": { "name": "Delete Dataset", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Delete Dataset" }, { "info": { "name": "Query Datasets", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/query", "params": [ { "name": "actions", "value": "", "type": "query", "description": "Actions to include in the 'permissions' field." }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Datasets" }, { "info": { "name": "Get Dataset Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Content" }, { "info": { "name": "Upsert Dataset Content", "type": "http" }, "http": { "method": "PUT", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Rollback the content of a dataset to a previous version." }, { "info": { "name": "Update Dataset Content", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/content", "headers": [ { "name": "If-Match", "value": "d89cce33-549d-4b6d-b220-afb641d859c8" } ], "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the content of a dataset.\n\nThe `index` and `column_name` fields are treated as keys tied to a specific version of the dataset.\nAs such, these values are considered immutable identifiers for the dataset's structure.\n\nEdits are applied sequentially in list order, and each edit sees the table state left by the\nprevious one. For example, after a `rename_column` edit renames `col_a` to `col_b`, any\nsubsequent `update_row` in the same request must reference the column as `col_b`, not `col_a`.\n\n" }, { "info": { "name": "Download Dataset", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/download", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Download Dataset" }, { "info": { "name": "Preview Dataset", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/preview", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Preview Dataset" }, { "info": { "name": "Query Dataset Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/content/query", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Dataset Content" }, { "info": { "name": "List User Dataset Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/users", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List the users with which the dataset has been shared." }, { "info": { "name": "Create User Dataset Collaborators", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/users", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Create User Dataset Collaborators" }, { "info": { "name": "List Group Dataset Collaborators", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/groups", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List the groups with which the dataset has been shared." }, { "info": { "name": "Create Group Dataset Collaborators", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/groups", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Share a dataset with groups." }, { "info": { "name": "Update User Dataset Collaborator", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/users/:user_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the sharing permissions of a user on a dataset." }, { "info": { "name": "Delete User Dataset Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/users/:user_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "user_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Remove a user's access to a dataset." }, { "info": { "name": "Update Group Dataset Collaborator", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/groups/:group_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "group_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update the sharing permissions of a group on a dataset." }, { "info": { "name": "Delete Group Dataset Collaborator", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/groups/:group_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "group_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Remove a group's access to a dataset." }, { "info": { "name": "Query Dataset Versions", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/versions/query", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Query Dataset Versions" }, { "info": { "name": "Get Dataset Version Content", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/versions/:version_index/content", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "version_index", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Version Content" }, { "info": { "name": "Update Dataset Version", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/versions/:version_index", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "version_index", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Update Dataset Version" }, { "info": { "name": "List Dataset Projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/:dataset_id/projects", "params": [ { "name": "dataset_id", "value": "", "type": "path" }, { "name": "starting_token", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "List Dataset Projects" }, { "info": { "name": "Extend Dataset Content", "type": "http" }, "http": { "method": "POST", "url": "https://api.galileo.ai/public/v2/datasets/extend", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Extends the dataset content" }, { "info": { "name": "Get Dataset Synthetic Extend Status", "type": "http" }, "http": { "method": "GET", "url": "https://api.galileo.ai/public/v2/datasets/extend/:dataset_id", "params": [ { "name": "dataset_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Galileo-API-Key", "value": "{{Galileo-API-Key}}", "placement": "header" } }, "docs": "Get Dataset Synthetic Extend Status" } ] } ], "bundled": true }