Skip to main content
GET
/
datasets
/
{dataset_id}
/
versions
/
{version_id}
Get Dataset Version
curl --request GET \
  --url https://api.woodwide.ai/datasets/{dataset_id}/versions/{version_id} \
  --header 'Authorization: Bearer <token>'
{
  "dataset_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "dataset_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "version": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "schema_json": {},
  "byte_size": 123,
  "ingest_job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "ready_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.woodwide.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dataset_id
string<uuid>
required
version_id
string<uuid>
required

Response

Successful Response

Dataset version detail.

Includes schema information. The status field indicates whether the version is ready for use.

dataset_version_id
string<uuid>
required
dataset_id
string<uuid>
required
version
integer
required
status
enum<string>
required

Version status.

Available options:
processing,
ready,
failed
created_at
string<date-time>
required
schema_json
Schema Json · object

Inferred column schema.

byte_size
integer

Size of the dataset version in bytes.

ingest_job_id
string<uuid> | null

ID of the ingestion job that created this version.

ready_at
string<date-time> | null

When the version became ready for use.