Skip to main content
GET
/
jobs
/
{job_id}
/
results
Get Job Results
curl --request GET \
  --url https://api.woodwide.ai/jobs/{job_id}/results \
  --header 'Authorization: Bearer <token>'
{
  "job_type": "<string>",
  "inference_results_uri": "<string>",
  "training_results": {},
  "dataset_ingest_results": {}
}

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

job_id
string<uuid>
required

Response

Successful Response

Typed job results.

The fields populated depend on the job type:

  • Training jobs: training_results contains metrics.
  • Inference jobs: inference_results_uri is a signed download URL.
  • Dataset ingest: dataset_ingest_results contains stats.
job_type
string
required
inference_results_uri
string | null

Signed download URL for inference results (inference jobs only).

training_results
Training Results · object

Training metrics and results (training jobs only).

dataset_ingest_results
Dataset Ingest Results · object

Ingestion stats (dataset_ingest jobs only).