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

Retrieve a provider

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

Retrieves a provider object by its ID.

Previous

List all providers

Next

API Errors

Built with

Authentication

AuthorizationBearer
Authorization header using the Bearer scheme

Path parameters

provider_idstringRequiredformat: "pr_.+"

Response

OK
idstringformat: "pr_.+"

Unique identifier for the provider. Prefixed with pr_.

namestring
The name of the provider.
descriptionstring
Description of the provider.
website_urlstring
The provider's main website URL.
logo_urlstring
URL to the provider's logo image.
support_phonestring
Customer support phone number.
supported_countrieslist of enums
List of countries supported by this provider.
objectstringRead-only

Object type. Always provider.

employer_platform_urlstring or null

URL to the employer portal/platform for this provider, if available.

Errors

404
Not Found Error