WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Get InMail credit balance

GET/api/linkedin/gateway/linkedin/inmail_balance

Reads how many InMail credits are left on the connected account, broken out by the premium subscription they come from.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Query parameters

FieldTypeDescription
account_id *stringA connected account's id.

Response fields

FieldTypeDescription
object"LinkedinInmailBalance"Always this value.
premium / recruiter / sales_navigatornumber | nullRemaining credits under each subscription. null when the account isn't on that plan at all.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/linkedin/inmail_balance?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "LinkedinInmailBalance",
  "premium": 5,
  "recruiter": 40,
  "sales_navigator": null
}
No key yet? Create one from Dashboard → API Keys.