List providers
curl --request GET \
--url https://api.healos.ai/ext-api/v1/providers \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.healos.ai/ext-api/v1/providers"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.healos.ai/ext-api/v1/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.healos.ai/ext-api/v1/providers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.healos.ai/ext-api/v1/providers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.healos.ai/ext-api/v1/providers")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.healos.ai/ext-api/v1/providers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "aaaaaaa1-0000-0000-0000-000000000001",
"name": "Dr. Alice Nguyen",
"email": "alice.nguyen@cancercenter.example",
"npi": "1234567890",
"title": "MD",
"specialty": "Oncology",
"role": "member",
"joined_at": "2026-01-15T09:30:00.000Z"
}
],
"meta": {
"page": 123,
"limit": 123,
"total_pages": 123
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Rate limit exceeded. Please retry after the window resets."
}Providers
List providers
Read-only, paginated list of the providers (clinicians) in your organization. The provider id is the stable internal identifier to map against your own directory and to pass as provider_id on patients and appointments. Pass npi=<value> to look up a single provider by their individual (type-I) NPI.
GET
/
providers
List providers
curl --request GET \
--url https://api.healos.ai/ext-api/v1/providers \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.healos.ai/ext-api/v1/providers"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.healos.ai/ext-api/v1/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.healos.ai/ext-api/v1/providers",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.healos.ai/ext-api/v1/providers"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.healos.ai/ext-api/v1/providers")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.healos.ai/ext-api/v1/providers")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "aaaaaaa1-0000-0000-0000-000000000001",
"name": "Dr. Alice Nguyen",
"email": "alice.nguyen@cancercenter.example",
"npi": "1234567890",
"title": "MD",
"specialty": "Oncology",
"role": "member",
"joined_at": "2026-01-15T09:30:00.000Z"
}
],
"meta": {
"page": 123,
"limit": 123,
"total_pages": 123
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Rate limit exceeded. Please retry after the window resets."
}Authorizations
API key obtained from /api/v1/ext-api-keys
Query Parameters
Example:
"1"
Example:
"20"
Look up a single provider by individual (type-I) NPI (bypasses pagination; returns 404 if no match).
Example:
"1234567890"
Was this page helpful?
⌘I

