Wire Docs

List operator connections

GET
/v1/operator_connections

Authorization

bearerAuth
AuthorizationBearer <token>

API key as a bearer token (Authorization: Bearer sk_live_...).

In: header

Query Parameters

limit?integer
starting_after?string

Cursor — an object id; returns the page after it.

Response Body

application/json

curl -X GET "https://example.com/v1/operator_connections"
{
  "object": "list",
  "url": "string",
  "has_more": true,
  "data": [
    {
      "id": "string",
      "object": "operator_connection",
      "operator": "string",
      "mode": "byo",
      "status": "string",
      "capabilities": [
        "string"
      ],
      "created": 0
    }
  ]
}