For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get access
Getting Started Key Concepts Integration Types Core Components Embed Hosted API API Reference
  • API Reference
    • Contribution Reports
    • Events and Webhooks
      • GETList all providers
      • GETRetrieve a provider
    • API Errors
Get access
LogoLogo
API ReferenceProviders

List all providers

GET
/providers
GET
/providers
$curl https://test.api.kota.io/providers \
> -H "Authorization: Bearer <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "items": [
3 {
4 "id": "pr_3b1333d87d9d4fd6ad83ba7f6b0e951a",
5 "name": "Global Health Insurance",
6 "description": "Leading provider of international health insurance plans tailored for expatriates and travelers.",
7 "website_url": "https://www.globalhealthinsure.com",
8 "logo_url": "https://www.globalhealthinsure.com/assets/logo.png",
9 "support_phone": "+1-800-555-0199",
10 "supported_countries": [
11 "us",
12 "ca",
13 "gb",
14 "au",
15 "de"
16 ],
17 "object": "provider"
18 }
19 ],
20 "page": 1,
21 "page_size": 10,
22 "total_count": 57,
23 "has_next_page": true,
24 "has_previous_page": false
25}

Returns a list of providers.

Previous

Retrieve a policy import intent

Next

Retrieve a provider

Built with

Authentication

AuthorizationBearer
Authorization header using the Bearer scheme

Query parameters

countryobjectOptional

Filter by country; only providers that support this country are returned.

pageintegerOptional
The page of results to return. Defaults to 1 if not provided.
page_sizeintegerOptional
The number of results to return per page. Defaults to 10 if not provided. Maximum value is 100.

Response

OK
itemslist of objects
A paginated array containing the response elements
pageinteger
The current page of the results
page_sizeinteger
The number of results on this page. This can be different from the requested page size if the total number of results is less than the requested page size
total_countinteger
The total number of elements available in the response. This is the total number of elements available across all pages, not just the current page.
has_next_pagebooleanRead-only
Whether there are more pages available after this page
has_previous_pagebooleanRead-only
Whether there are more pages available before this page

Errors

400
Bad Request Error