Overview
Getting Started
SDK/API
- Python SDK Reference
- TypeScript SDK Reference
How-to Guides
- Overview
- Conversational AI
- Retrieval-Augmented Generation
- Agentic AI
Cookbooks
- Use Cases
Integrations
Concepts
- Metrics
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
API Reference
- health
- auth
- trace
- log_stream
- experiment
- feedback
- annotation
- data
- protect
- datasets
- GETList Prompt Datasetsdeprecated
- POSTUpload Prompt Evaluation Datasetdeprecated
- GETList Datasets
- POSTCreate Dataset
- GETGet Dataset
- DELDelete Dataset
- PATCHUpdate Dataset
- POSTQuery Datasets
- GETDownload Prompt Datasetdeprecated
- PUTUpdate Prompt Datasetdeprecated
- DELDelete Prompt Datasetdeprecated
- GETGet Dataset Content
- PUTUpsert Dataset Content
- PATCHUpdate Dataset Content
- GETDownload Dataset
- POSTPreview Dataset
- POSTQuery Dataset Content
- GETList User Dataset Collaborators
- POSTCreate User Dataset Collaborators
- GETList Group Dataset Collaborators
- POSTCreate Group Dataset Collaborators
- DELDelete User Dataset Collaborator
- PATCHUpdate User Dataset Collaborator
- DELDelete Group Dataset Collaborator
- PATCHUpdate Group Dataset Collaborator
- POSTQuery Dataset Versions
- GETGet Dataset Version Content
- PATCHUpdate Dataset Version
- GETList Dataset Projects
- GET
- projects
References
datasets
Create Dataset
Creates a standalone dataset.
POST
/
v2
/
datasets
curl --request POST \
--url https://api.galileo.ai/v2/datasets \
--header 'Content-Type: multipart/form-data' \
--header 'Galileo-API-Key: <api-key>' \
--form draft=false \
--form hidden=false \
--form 'name=<string>' \
--form 'copy_from_dataset_id=<string>' \
--form copy_from_dataset_version_index=123
{
"id": "<string>",
"permissions": [],
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"project_count": 123,
"num_rows": 123,
"column_names": [
"<string>"
],
"created_by_user": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"current_version_index": 123,
"draft": true
}
Authorizations
Query Parameters
Available options:
csv
, feather
, json
, jsonl
Body
multipart/form-data
Response
200
application/json
Successful Response
The response is of type object
.
curl --request POST \
--url https://api.galileo.ai/v2/datasets \
--header 'Content-Type: multipart/form-data' \
--header 'Galileo-API-Key: <api-key>' \
--form draft=false \
--form hidden=false \
--form 'name=<string>' \
--form 'copy_from_dataset_id=<string>' \
--form copy_from_dataset_version_index=123
{
"id": "<string>",
"permissions": [],
"name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"project_count": 123,
"num_rows": 123,
"column_names": [
"<string>"
],
"created_by_user": {
"id": "<string>",
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>"
},
"current_version_index": 123,
"draft": true
}
Assistant
Responses are generated using AI and may contain mistakes.