Skip to main content

Get Connection

Returns one connection with its status and masked credentials.
GET https://api.opsmatic.com/v1/connections/{id}
Requires an API key with connections: read and access to the connection.

Path Parameters

id
string
required
The connection ID, e.g. conn_abc123.

Headers

Authorization
string
required
Bearer ops_your_api_key

Response

id
string
Unique connection identifier.
service_type
string
n8n, make or openclaw.
service_name
string
The friendly label for the connection.
status
string
active, inactive or error.
api_key
string | null
Masked credential (never returned in plaintext).
organization_id
string | null
The organization this connection belongs to, or null for a personal connection.
curl -H "Authorization: Bearer ops_your_api_key" \
  https://api.opsmatic.com/v1/connections/conn_abc123
{
  "id": "conn_abc123",
  "service_type": "n8n",
  "service_name": "Production n8n",
  "status": "active",
  "base_url": "https://n8n.example.com",
  "api_key": "****************",
  "organization_id": "org_789",
  "created_at": "2026-01-01T00:00:00Z"
}