Skip to main content
GET
/
inference-providers
/
{uid}
CRUD + test for inference provider configurations.
curl --request GET \
  --url https://api.avala.ai/api/v1/inference-providers/{uid}/ \
  --header 'X-Avala-Api-Key: <api-key>'
{
  "name": "<string>",
  "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "description": "<string>",
  "provider_type": "sagemaker",
  "config": {},
  "is_active": true,
  "project": 123,
  "last_test_at": "2023-11-07T05:31:56Z",
  "last_test_success": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

X-Avala-Api-Key
string
header
required

API key for authentication. Generate one in Mission Control Settings > Security & Identity.

Path Parameters

uid
string
required

Response

200 - application/json
name
string
required

Human-readable name, e.g. 'My YOLO v8 endpoint'.

Required string length: 1 - 255
uid
string<uuid>
description
string
provider_type
enum<string>
Available options:
sagemaker,
http
config
Config · object

Provider-specific configuration. For HTTP: endpoint_url (required), auth_header, auth_type, headers, timeout, response_key. For SageMaker: endpoint_name, region.

is_active
boolean
project
integer | null

If set, this provider is only available in this project.

last_test_at
string<date-time> | null
last_test_success
boolean | null
created_at
string<date-time>
updated_at
string<date-time>