Run inference asynchronously using a dataset reference instead of a file upload.
Reference input data byDocumentation Index
Fetch the complete documentation index at: https://docs.woodwide.ai/llms.txt
Use this file to discover all available pages before exploring further.
dataset_id (latest ready version) or dataset_version_id. Returns a job_id immediately.
Poll GET /jobs/{job_id} until status is succeeded, then fetch results via GET /jobs/{job_id}/results.
See Output Formats for output columns by model type.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body for asynchronous dataset inference.
Reference input data by dataset_id (resolves to the latest ready
version) or dataset_version_id for reproducibility. Optionally
pin a model_version_id.
Pin a specific model version. If omitted, the latest ready version is used.
Pin a specific dataset version for inference input.
Dataset to run inference on (uses latest ready version). Provide this OR dataset_version_id.
Output format: json, csv, or parquet.
json, csv, parquet Controls anomaly detection output shape. 'ids_only' returns a list of anomalous row indices. 'per_row' returns id, is_anomaly, and anomaly_score for every input row. Ignored for non-anomaly model types.
ids_only, per_row Successful Response Output format depends on the output_type parameter (json, csv, or parquet). See Output Formats for output columns by model type.