Skip to main content
GET
/
api
/
gen-ai
/
beta
/
endpoints
/
{endpointId}
/
versions
Get the versions for a Gen AI Endpoint
curl --request GET \
  --url https://api.example.com/api/gen-ai/beta/endpoints/{endpointId}/versions \
  --header 'X-Domino-Api-Key: <api-key>'
[
  {
    "createdAt": "2020-10-05T12:56:55.000Z",
    "creator": {
      "id": "integration test",
      "name": "Full User Name"
    },
    "number": 1,
    "label": "v1"
  }
]

Authorizations

X-Domino-Api-Key
string
header
required

Path Parameters

endpointId
string
required

The ID of the endpoint to get versions for

Response

Success

createdAt
string<date-time>
required

The date and time the model endpoint was created

Example:

"2020-10-05T12:56:55.000Z"

creator
object
required
number
integer
required

The version number of the model endpoint

Example:

1

status
enum<string>
required
Available options:
Building,
BuildFailed,
Starting,
Running,
Stopping,
Stopped,
Failed,
Unknown
label
string

The label of the model endpoint

Example:

"v1"