v1

latestOpenAPI 3.1.0MIT2026-07-2654137287.8 KB
inference_endpoints

Create a New Inference Endpoint Job

Creates a new inference endpoint job.

post/organizations/{organization_name}/inference-endpoints/{inference_endpoint_name}/jobs

Request body

{"stackTrail":"components:schemas:InferenceEndpointJobInput","oasType":"schema","type":"unknown","title":"Input","description":"The job input. May be any valid JSON."}
metadataInferenceEndpointJobMetadata

The job metadata. May be any valid JSON.

webhookstring url

The webhook URL to which the job results will be POSTed.

webhook_urlstring url

The webhook URL to which the job results will be POSTed.

Example request

{
  "webhook_url": "https://webhook.example.com/events"
}

Response

Created

create_timestring date-time required

The time the job was created.

idstring uuid required

The inference endpoint job identifier.

inference_endpoint_namestring required

The inference endpoint name.

{"stackTrail":"components:schemas:InferenceEndpointJobInput","oasType":"schema","type":"unknown","title":"Input","description":"The job input. May be any valid JSON."}
metadataInferenceEndpointJobMetadata

The job metadata. May be any valid JSON.

organization_namestring required

The organization name.

{"stackTrail":"components:schemas:InferenceEndpointJobOutput","oasType":"schema","type":"unknown","title":"Output","description":"The job output. May be any valid JSON."}
status'pending' | 'running' | 'succeeded' | 'cancelled' | 'failed' required

The current status.

update_timestring date-time required

The time the job was last updated.

webhookstring url

The webhook URL called when the job completes.

webhook_urlstring url

The webhook URL called when the job completes.

Example response

{
  "id": "2fc459a1-1c09-4a34-ade7-54d03fc51d6a",
  "inference_endpoint_name": "transcribe",
  "organization_name": "acme-corp"
}