curl --request GET \
--url https://api.example.com/deployments/ \
--header 'Authorization: Bearer <token>'[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"service_name": "<string>",
"organisation_id": "<string>",
"model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "Pending",
"annotations": {},
"created_at": "2025-11-26T05:37:15.429938",
"updated_at": "2025-11-26T05:37:15.429945"
}
]Fetch all the deployments
curl --request GET \
--url https://api.example.com/deployments/ \
--header 'Authorization: Bearer <token>'[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"service_name": "<string>",
"organisation_id": "<string>",
"model_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "Pending",
"annotations": {},
"created_at": "2025-11-26T05:37:15.429938",
"updated_at": "2025-11-26T05:37:15.429945"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response