Skip to main content

Quickstart

Get up and running with the Konver API in minutes. This guide will walk you through making your first API calls.

Prerequisites​

Before you begin, make sure you have:

  • A Konver account with API access
  • An API key
  • A tool to make HTTP requests (cURL, Postman, or your preferred programming language)

Base URL​

All API requests should be made to your Konver API instance. The base URL will be provided by your administrator:

https://api.konver.ai/v1

Your First API Call​

Let's start by retrieving a list of call lists from your organization.

curl -X GET "https://api.konver.ai/v1/call-list" \
-H "X-Api-Key: YOUR_API_KEY" \
-H "Content-Type: application/json"

Example Response​

{
"totalCount": 3,
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Q1 2026 Prospects",
"createdAt": "2026-01-28T14:30:00Z",
"isLocked": false
},
{
"id": "550e8400-e29b-41d4-a716-446655440002",
"name": "Enterprise Leads",
"createdAt": "2026-01-25T09:15:00Z",
"isLocked": false
}
]
}

Next Steps​

Now that you've made your first API calls, explore more: