Bindings

List all Bindings

get/api/v1/bindings

Query parameters

service_idstring uuid nullable

Filter by service ID

network_idstring uuid nullable

Filter by network ID

port_idstring uuid nullable

Filter by port ID

ip_address_idstring uuid nullable

Filter by interface ID

limitinteger nullable

Maximum number of results to return (1-1000, default: 50). Use 0 for no limit.

offsetinteger nullable

Number of results to skip. Default: 0.

Response

List of Bindings

errorstring nullable
successboolean required

Example response

{
  "data": [
    {
      "created_at": "2026-04-20T04:23:43.712189Z",
      "id": "2907a66b-305c-480c-a08c-46046e98643f",
      "ip_address_id": "550e8400-e29b-41d4-a716-446655440005",
      "network_id": "550e8400-e29b-41d4-a716-446655440002",
      "port_id": "550e8400-e29b-41d4-a716-446655440006",
      "service_id": "550e8400-e29b-41d4-a716-446655440007",
      "type": "Port",
      "updated_at": "2026-04-20T04:23:43.712189Z"
    }
  ],
  "meta": {
    "api_version": 1,
    "pagination": {
      "has_more": true,
      "limit": 50,
      "offset": 0,
      "total_count": 142
    },
    "server_version": "0.16.1"
  }
}

Changes