Datasets
Get dataset overview
Obtains the basic information about the dataset, including the keywords, description, and pre-generated questions.
GET
/
v1
/
team
/
datasets
/
{datasetId}
/
overview
curl --request GET \
--url https://ai.data.cloud/api/v1/team/datasets/{datasetId}/overview
{
"code": {
"code": 0
},
"data": {
"id": "dset-cm5axptyyxxx298",
"name": "sales_indicators_2024",
"description": "A dataset comprising 373 travel bookings with 15 attributes, offering insights into booking patterns, pricing strategies, and more",
"summary": "This dataset contains 373 travel bookings with 15 attributes, enabling analysis of booking trends, pricing strategies, and travel agency dynamics.",
"explorationQuestions": [
"How does the booking price trend over time based on the BookingTimestamp?",
"How does the average booking price change with respect to the TravelDate?",
"Are there any significant outliers in the booking prices, and what might be causing them?",
"How does the average price vary between one-way and round-trip bookings?"
],
"keywords": [
"Travel Bookings",
"Booking Trends",
"Travel Agencies"
]
}
}
Headers
The external trace ID. The length ranges from 0 to 128 characters.
Path Parameters
The ID of the dataset you want to view.
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://ai.data.cloud/api/v1/team/datasets/{datasetId}/overview
{
"code": {
"code": 0
},
"data": {
"id": "dset-cm5axptyyxxx298",
"name": "sales_indicators_2024",
"description": "A dataset comprising 373 travel bookings with 15 attributes, offering insights into booking patterns, pricing strategies, and more",
"summary": "This dataset contains 373 travel bookings with 15 attributes, enabling analysis of booking trends, pricing strategies, and travel agency dynamics.",
"explorationQuestions": [
"How does the booking price trend over time based on the BookingTimestamp?",
"How does the average booking price change with respect to the TravelDate?",
"Are there any significant outliers in the booking prices, and what might be causing them?",
"How does the average price vary between one-way and round-trip bookings?"
],
"keywords": [
"Travel Bookings",
"Booking Trends",
"Travel Agencies"
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.