Skip to main content
GET
/
api
/
organizations
/
{orgId}
/
ai
/
models
List available AI models
curl --request GET \
  --url https://platform.kodexa.ai/api/organizations/{orgId}/ai/models \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "created": 123,
      "id": "<string>",
      "object": "<string>",
      "owned_by": "<string>"
    }
  ],
  "object": "<string>"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.

Path Parameters

orgId
string<uuid>
required

Organization UUID. The authenticated user must be a member of this organization.

Response

List of available models

List of available models.

data
object[]

List of model objects.

object
string

Object type, always 'list'.