Core instances
Core Instances from a project with backward pagination.
Authorizations
Path parameters
projectIDstring · uuidRequired
Parent project ID.
Query parameters
lastintegerOptional
Limit to the last core instances.
beforestringOptional
Paginate core instances before the given cursor.
namestringOptional
Filter core instances with the given name.
environment_idstringOptional
Filter core instances with the given environment ID.
tags_querystringOptionalExample:
Filter core instances with the given tags query.
tagone AND tagtwo
exclude_internalbooleanOptional
Exclude internal pipelines (health-check) from count.
Responses
200
OK
application/json
get
GET /v1/projects/{projectID}/core_instances HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"items": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "my-core-instance",
"version": "v0.1.12",
"status": "running",
"metadata": {
"aws.ami_id": "text",
"aws.account_id": "text",
"aws.hostname": "text",
"aws.vpc_id": "text",
"aws.private_ipv4": "text",
"aws.public_ipv4": "text",
"aws.ec2_instance_id": "text",
"aws.ec2_instance_type": "text",
"aws.az": "text"
},
"pipelinesCount": 1,
"createdAt": "2025-06-27T19:19:16.250Z",
"updatedAt": "2025-06-27T19:19:16.250Z",
"tags": [
"text"
],
"environmentName": "default",
"skipServiceCreation": false
}
],
"endCursor": "text",
"count": 1
}