Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
import httpx resp = httpx.get( "https://api.decimal.ai/api/v1/datasets/ds_abc123", headers={"Authorization": "Bearer dai_sk_..."}, ) resp.raise_for_status() ds = resp.json()
decimalai datasets show ds_abc123
{ "id": "ds_abc123", "name": "travel-sft-v2", "dataset_type": "sft", "description": "Successful flight booking traces.", "training_target_agent": "travel-planner", "training_target_model": "gpt-4o", "current_version_id": "dv_001", "versions": [ { "id": "dv_001", "version_number": 1, "status": "ready", "row_count": 1250, "storage_format": "jsonl", "source_breakdown": { "keep": 1100, "repair": 150 }, "created_at": "2026-04-01T12:00:00Z" } ] }
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>", "input": "<unknown>", "ctx": {} } ] }
Get dataset detail with versions.
Enter your API key (e.g. dai_sk_test_key_001)
Successful Response