Skip to main content
GET
List deployments

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectId
string
required

ID of the project that owns the endpoint.

endpointId
string
required

ID of the endpoint whose deployments are listed.

Query Parameters

limit
integer

Maximum number of deployments to return. Max 500, defaults to 50.

after
string

Cursor from a previous deployment list response.

orderBy
string

Sort field for the results. Supports created_at or updated_at, optionally followed by asc or desc.

filter
string

Filter expression using name, state, model, created_at, or updated_at with comparison operators and AND/OR/NOT; state takes a DeploymentState enum name and model takes a model resource name. name supports substring matching with : and prefix/suffix wildcards with *, and accepts a bare deployment name or <project_slug>/<endpoint_name>/<deployment_name>.

Response

OK

Deployments under an endpoint and pagination metadata.

data
object[]
required

The list of deployments.

object
any
required

Object type. Always list.

next_cursor
string

Cursor for the next page. Null if there are no more results.