list_instances
Retrieve a list of all cloud instances on the Civo platform, with options to filter by region and paginate results for efficient management.
Instructions
List all instances on Civo
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Pagination page | |
per_page | No | Results per page | |
region | No | Filter by region |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "Pagination page",
"type": "number"
},
"per_page": {
"default": 20,
"description": "Results per page",
"type": "number"
},
"region": {
"description": "Filter by region",
"type": "string"
}
},
"type": "object"
}