curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/datasets \
--header 'Authorization: Bearer <token>'{
"datasets": [
{
"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>",
"averageTurnCount": 123
}
],
"nextPageToken": "<string>",
"totalSize": 123
}curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/datasets \
--header 'Authorization: Bearer <token>'{
"datasets": [
{
"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>",
"averageTurnCount": 123
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
The Account Id
The maximum number of datasets to return. The maximum page_size is 200, values above 200 will be coerced to 200. If unspecified, the default is 50.
A page token, received from a previous ListDatasets call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListDatasets must match the call that provided the page token.
Only model satisfying the provided filter (if specified) will be returned. See https://google.aip.dev/160 for the filter grammar.
A comma-separated list of fields to order by. e.g. "foo,bar" The default sort order is ascending. To specify a descending order for a field, append a " desc" suffix. e.g. "foo desc,bar" Subfields are specified with a "." character. e.g. "foo.bar" If not specified, the default order is by "name".
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
Show child attributes
STATE_UNSPECIFIED, UPLOADING, READY Show child attributes
The status code.
OK, CANCELLED, UNKNOWN, INVALID_ARGUMENT, DEADLINE_EXCEEDED, NOT_FOUND, ALREADY_EXISTS, PERMISSION_DENIED, UNAUTHENTICATED, RESOURCE_EXHAUSTED, FAILED_PRECONDITION, ABORTED, OUT_OF_RANGE, UNIMPLEMENTED, INTERNAL, UNAVAILABLE, DATA_LOSS A developer-facing error message in English.
FORMAT_UNSPECIFIED, CHAT, COMPLETION, RL The email address of the user who initiated this fine-tuning job.
The update time for the dataset.
The resource name of the job that created this dataset (e.g., batch inference job). Used for lineage tracking to understand dataset provenance.
The estimated number of tokens in the dataset.
An estimate of the average number of turns per sample in the dataset.
A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
Was this page helpful?