LynCutLynCut

Connections API

List connections

List social accounts connected to the profile, with status and token expiry.

GET/v1/connections

This endpoint takes no parameters.

Request

curl "https://api.lyncut.com/v1/connections" \
  -H "x-lyncut-api-key: YOUR_API_KEY"

Response

{
  "data": [
    {
      "id": "con_9f3a",
      "provider": "youtube",
      "status": "active",
      "accountLabel": "@lyncutstudio",
      "scopes": ["youtube.upload", "youtube.readonly"],
      "expiresAt": "2026-11-02T10:41:00.000Z"
    }
  ]
}

Was this page helpful?