Skip to Content
APINetworksLoad BalancersList Load Balancers

List load balancers

Retrieve load balancers available to the authenticated user.

Load balancers distribute traffic across multiple instances.


Endpoint

GET /v1/load_balancers

Example

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

FieldTypeDescription
idstringLoad balancer ID
namestringName
public_ipstringPublic IP
statusstringStatus
targetsstring[]Attached instances
created_atstringTimestamp

Errors

401 Unauthorized

403 Forbidden

Last updated on