Skip to main content
GET
/
user
/
channels
Get User Channels
curl --request GET \
  --url https://api.lemlist.com/api/user/channels \
  --header 'Authorization: Basic <encoded-value>'
{
  "plan": "Multichannel Expert",
  "email": {
    "connected": true,
    "available": true,
    "accounts": [
      {
        "id": "usm_bsdepN6jb8zftK9Ns",
        "email": "john@acme.com",
        "provider": "google"
      }
    ]
  },
  "linkedin": {
    "connected": true,
    "available": true
  },
  "whatsapp": {
    "connected": false,
    "available": true,
    "addonActive": false,
    "accounts": []
  }
}
This endpoint uses the API key to identify the user. No additional parameters are required.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

Connected channels and feature availability for the authenticated user

plan
string | null

Current billing plan name

email
object
linkedin
object
whatsapp
object