Appearance
List Vendors
Get all EHR vendors with endpoint counts.
Request
GET /api/v1/vendorsNo parameters. Returns all vendors sorted alphabetically.
Example
bash
curl "https://fhir-api.luxera.io/api/v1/vendors"python
import requests
response = requests.get("https://fhir-api.luxera.io/api/v1/vendors")
data = response.json()typescript
const response = await fetch("https://fhir-api.luxera.io/api/v1/vendors");
const data = await response.json();csharp
using var client = new HttpClient();
var response = await client.GetAsync("https://fhir-api.luxera.io/api/v1/vendors");
var data = await response.Content.ReadAsStringAsync();Response
json
{
"success": true,
"data": [
{
"id": "epic",
"name": "Epic Systems",
"endpointListUrl": "",
"endpointCount": 451,
"lastScrapedAt": null
},
{
"id": "athenahealth-inc",
"name": "athenahealth, Inc.",
"endpointListUrl": "",
"endpointCount": 22473,
"lastScrapedAt": null
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Vendor ID (use for filtering in /endpoints?vendor=) |
name | string | Display name |
endpointCount | number | Number of endpoints for this vendor |