Skip to main content
POST
Get Drivers

Authorizations

Authorization
string
header
required

An API key or OAuth2/OIDC access token sent as Authorization: Bearer <token>.

Path Parameters

model_id
string<uuid>
required

Body

application/json
dataframe
WireDataFrame · object
required

Inline dataset spec; rows are materialized inside the worker.

include_rules
boolean
default:false

When True, attach per-sample rule explanations to the response. Each rule is a small set of feature conditions that together characterize the model's prediction for that sample. When False, rules are skipped and the optional knobs below are inert.

max_rules
integer | null

Maximum number of rules returned per sample. Optional; the service default applies when unset.

Required range: x >= 1
max_depth
integer | null

Maximum number of feature conditions allowed in a single rule. Optional; the service default applies when unset.

Required range: x >= 1
min_support
number | null

Minimum fraction of the reference dataset a rule must match. Optional; the service default applies when unset.

Required range: 0 <= x <= 1
max_features_considered
integer | null

Maximum number of input features available to the rule computation per sample. Optional; the service default applies when unset.

Required range: x >= 1

Response

Successful Response

job_id
required

Server-assigned id of the submitted job

status
enum<string>
required
Available options:
pending,
running,
completed,
failed
message
string
required