Start an augmentation run (or estimate cost)
POST/api/v1/datasets/{dataset_id}/run
Validates column mapping and recipe configuration, reserves credits, and starts the augmentation pipeline. Set estimate=true to validate and get a cost quote without starting a run.
Body ParametersJSON
Returns
Start an augmentation run (or estimate cost)
curl https://api.adaptionlabs.ai/api/v1/datasets/$DATASET_ID/run \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $ADAPTION_API_KEY" \
-d '{}'{
"estimate": true,
"estimatedCreditsConsumed": 0,
"estimatedMinutes": 0,
"run_id": "dataset-550e8400-e29b-41d4-a716-446655440000-1712234567890"
}Returns Examples
{
"estimate": true,
"estimatedCreditsConsumed": 0,
"estimatedMinutes": 0,
"run_id": "dataset-550e8400-e29b-41d4-a716-446655440000-1712234567890"
}