Skip to content
bash
socifyr connections [--json]

Options

FlagDescription
--jsonOutput as JSON

Example

bash
socifyr connections
Connections (3)

  📷  instagram-mybrand      Instagram    @mybrand
  🐦  x-myhandle              X            @myhandle
  💼  linkedin-myhandle       LinkedIn     Madhav Poudel
bash
socifyr connections --json | jq -r '.[].slug'
# instagram-mybrand
# x-myhandle
# linkedin-myhandle

Connecting new accounts

There's no CLI command for OAuth — that has to happen in the web dashboard.

Reading a connection's status

The JSON output includes everything you need to detect expired or revoked tokens:

bash
socifyr connections --json | jq '.[] | {slug, expiresAt, isExpired}'