List load balancers
Retrieve load balancers available to the authenticated user.
Load balancers distribute traffic across multiple instances.
Endpoint
GET /v1/load_balancersExample
cURL
curl https://api.redu.cloud/v1/load_balancers \
-H "x-api-key: YOUR_API_KEY"Successful response
{
"items": [
{
"id": "lb_01",
"name": "web-lb",
"public_ip": "203.0.113.10",
"status": "active",
"targets": [
"instance_1",
"instance_2"
],
"created_at": "2026-02-18T11:02:12Z"
}
],
"next_cursor": null
}Fields
| Field | Type | Description |
|---|---|---|
| id | string | Load balancer ID |
| name | string | Name |
| public_ip | string | Public IP |
| status | string | Status |
| targets | string[] | Attached instances |
| created_at | string | Timestamp |
Errors
401 Unauthorized
403 Forbidden
Last updated on