Skip to main content
GET
/
api
/
dataframer
/
seed-datasets
/
{dataset_id}
cURL
curl --request GET \
  --url https://df-api.dataframer.ai/api/dataframer/seed-datasets/{dataset_id}/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "Customer Reviews Dataset",
  "description": "Product reviews for sentiment analysis",
  "dataset_type": "SINGLE_FILE",
  "file_count": 1,
  "folder_count": 0,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-15T10:30:00Z",
  "created_by_email": "[email protected]",
  "files": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "file_type": "csv",
      "size_bytes": 245678,
      "path": "reviews.csv"
    }
  ],
  "short_sample_compatibility": {
    "is_short_samples_compatible": false,
    "is_long_samples_compatible": true,
    "reason": null
  }
}

Authorizations

Authorization
string
header
required

API Key authentication. Format: "Bearer YOUR_API_KEY"

Path Parameters

dataset_id
string<uuid>
required

UUID of the dataset

Response

Dataset details

id
string<uuid>

Unique identifier for the dataset

name
string

Dataset name

description
string | null

Optional description of the dataset contents or purpose

dataset_type
enum<string>

Type of dataset structure. SINGLE_FILE: one CSV/JSON/JSONL file with tabular data. MULTI_FILE: multiple individual text files. MULTI_FOLDER: files organized into folders where each folder represents one sample.

Available options:
SINGLE_FILE,
MULTI_FILE,
MULTI_FOLDER
created_at
string<date-time>

Timestamp when the dataset was created

updated_at
string<date-time>

Timestamp when the dataset was last modified

created_by_email
string

Email address of the user who created the dataset

files
object[]

List of all files in the dataset

folder_count
integer

Total number of folders in the dataset

file_count
integer

Total number of files in the dataset

short_sample_compatibility
object

Information about which generation modes are compatible with this dataset