#1 Product of the Day on Product Hunt — 2,400+ reps have found their wingman →
Developers

SalesViking API.

Pull call insights, outcomes and next steps into your own tools. REST, JSON, and webhooks.

ENDPOINTS
GET/v1/calls
GET/v1/calls/:id
POST/v1/calls/:id/notes
GET/v1/insights
POST/v1/webhooks

Retrieve a call

Returns the full debrief for a call, including health, pains, open threads and next steps.

curl https://api.salesviking.io/v1/calls/ac_92f1 \
  -H "Authorization: Bearer sv_live_..." 

{
  "id": "ac_92f1",
  "account": "Acme Corp",
  "health": 82,
  "outcome": "advancing",
  "pains": ["manual reporting", "slow onboarding"],
  "open_threads": ["timeline", "path_to_signature"],
  "next_steps": ["send security one-pager"]
}