GET
/
organizations
/
{organization_name}
/
inference-endpoints
/
{inference_endpoint_name}
/
jobs
/
{inference_endpoint_job_id}
Get an Inference Endpoint Job
curl --request GET \
  --url https://api.salad.com/api/public/organizations/{organization_name}/inference-endpoints/{inference_endpoint_name}/jobs/{inference_endpoint_job_id} \
  --header 'Salad-Api-Key: <api-key>'
{
  "id": "2fc459a1-1c09-4a34-ade7-54d03fc51d6a",
  "inference_endpoint_name": "transcribe",
  "organization_name": "acme-corp",
  "input": "<any>",
  "metadata": {},
  "webhook": "<string>",
  "webhook_url": "<string>",
  "status": "pending",
  "events": [
    {
      "action": "created",
      "time": "2023-11-07T05:31:56Z"
    }
  ],
  "output": "<any>",
  "create_time": "2023-11-07T05:31:56Z",
  "update_time": "2023-11-07T05:31:56Z"
}
Last Updated: July 1, 2025

Authorizations

Salad-Api-Key
string
header
required

Path Parameters

organization_name
string
required

Your organization name. This identifies the billing context for the API operation and represents a security boundary for SaladCloud resources. The organization must be created before using the API, and you must be a member of the organization.

Required string length: 2 - 63
Examples:

"acme-corp"

inference_endpoint_name
string
required

The inference endpoint name.

Required string length: 2 - 63
Examples:

"transcribe"

inference_endpoint_job_id
string<uuid>
required

The inference endpoint job identifier.

Examples:

"2fc459a1-1c09-4a34-ade7-54d03fc51d6a"

Response

OK

Represents a inference endpoint job

id
string<uuid>
required

The inference endpoint job identifier.

Examples:

"2fc459a1-1c09-4a34-ade7-54d03fc51d6a"

inference_endpoint_name
string
required

The inference endpoint name.

Required string length: 2 - 63
Examples:

"transcribe"

organization_name
string
required

The organization name.

Required string length: 2 - 63
Examples:

"acme-corp"

input
any
required

The job input. May be any valid JSON.

status
enum<string>
required

The current status.

Available options:
pending,
running,
succeeded,
cancelled,
failed
events
Events · object[]
required

The list of events.

Maximum length: 1000
create_time
string<date-time>
required

The time the job was created.

update_time
string<date-time>
required

The time the job was last updated.

metadata
object

The job metadata. May be any valid JSON.

webhook
string<url>
deprecated

The webhook URL called when the job completes.

Required string length: 1 - 2048
webhook_url
string<url>

The webhook URL called when the job completes.

Required string length: 1 - 2048
output
any

The job output. May be any valid JSON.