Test sets
Get Test Set
Resources
- Test sets
- Simulator
- Metrics
- Monitoring
Test sets
Get Test Set
GET
/
dataset
curl --request GET \
--url "https://api.coval.dev/dataset" \
--header "x-api-key: $COVAL_API_KEY" \
--header "Content-Type: application/json"
{
"message": "Successfully retrieved dataset",
"dataset": {
"id": "<string>",
"slug": "<string>",
"displayName": "<string>",
"description": "<string>",
"testSetType": "<string>",
"testSetMetadata": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"lastUpdatedAt": "2023-11-07T05:31:56Z"
}
}
curl --request GET \
--url "https://api.coval.dev/dataset" \
--header "x-api-key: $COVAL_API_KEY" \
--header "Content-Type: application/json"
Response
200
application/json
Successfully retrieved the dataset
ID of the dataset
Slug of the dataset
Display name of the dataset
Description of the dataset
Type of the test set
Metadata of the test set
Creation timestamp of the dataset
Last updated timestamp of the dataset
Was this page helpful?
curl --request GET \
--url "https://api.coval.dev/dataset" \
--header "x-api-key: $COVAL_API_KEY" \
--header "Content-Type: application/json"
{
"message": "Successfully retrieved dataset",
"dataset": {
"id": "<string>",
"slug": "<string>",
"displayName": "<string>",
"description": "<string>",
"testSetType": "<string>",
"testSetMetadata": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"lastUpdatedAt": "2023-11-07T05:31:56Z"
}
}