Guides/Getting started
Introduction
Everything in the Warmably dashboard — connecting a LinkedIn account, sending a connection request or message, and reading account status — is also available over a REST API authenticated with a personal API key.
v1REST · JSONStable
Base URLhttps://app.warmably.com/api/v1
Authentication
Every request carries your key in an Authorization header as a bearer token. Keys are created from Dashboard → API Keys and are shown once at creation — store the value somewhere safe before closing the dialog.
·Key prefix. Live keys begin
wm_live_. Test keys begin wm_test_ and never touch a real LinkedIn session.·Scope. A key belongs to one workspace and inherits that workspace's per-account limits.·Rotation. Rotating a key revokes the previous value immediately. There is no grace period.·Missing or invalid keys return 401 with an error string in the body.Endpoints
Everything below is live and callable with a key today.
GET/api/v1/meReturns the identity behind the API key→POST/api/linkedin/connectConnect a LinkedIn account→POST/api/linkedin/connect/{id}/2faSubmit a checkpoint code→GET/api/linkedin/connect/{id}/statusCheck connection status→POST/api/linkedin/accounts/{id}/actionsSend a connection request or message→ANY/api/linkedin/gateway/{...path}Call the LinkedIn API directly→