GET
/
v1
/
accounts
/
{account_id}
/
datasets
/
{dataset_id}
Get Dataset
curl --request GET \
  --url https://api.fireworks.ai/v1/accounts/{account_id}/datasets/{dataset_id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "displayName": "<string>",
  "createTime": "2023-11-07T05:31:56Z",
  "state": "STATE_UNSPECIFIED",
  "status": {
    "code": "OK",
    "message": "<string>"
  },
  "exampleCount": "<string>",
  "userUploaded": {},
  "evaluationResult": {
    "evaluationJobId": "<string>"
  },
  "transformed": {
    "sourceDatasetId": "<string>",
    "filter": "<string>",
    "originalFormat": "FORMAT_UNSPECIFIED"
  },
  "splitted": {
    "sourceDatasetId": "<string>"
  },
  "evalProtocol": {},
  "externalUrl": "<string>",
  "format": "FORMAT_UNSPECIFIED",
  "createdBy": "<string>",
  "updateTime": "2023-11-07T05:31:56Z",
  "sourceJobName": "<string>",
  "estimatedTokenCount": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

account_id
string
required

The Account Id

dataset_id
string
required

The Dataset Id

Query Parameters

readMask
string

The fields to be returned in the response. If empty or "*", all fields will be returned.

Response

200 - application/json

A successful response.

name
string
displayName
string
createTime
string<date-time>
state
enum<string>
default:STATE_UNSPECIFIED
Available options:
STATE_UNSPECIFIED,
UPLOADING,
READY
status
object
exampleCount
string<int64>
userUploaded
object
evaluationResult
object
transformed
object
splitted
object
evalProtocol
object
externalUrl
string
format
enum<string>
default:FORMAT_UNSPECIFIED
Available options:
FORMAT_UNSPECIFIED,
CHAT,
COMPLETION,
RL
createdBy
string

The email address of the user who initiated this fine-tuning job.

updateTime
string<date-time>

The update time for the dataset.

sourceJobName
string

The resource name of the job that created this dataset (e.g., batch inference job). Used for lineage tracking to understand dataset provenance.

estimatedTokenCount
string<int64>

The estimated number of tokens in the dataset.