Skip to main content
GET
/
v0
/
providers
List providers
curl --request GET \
  --url https://api.getlemma.com/v0/providers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "entity_k7mXp2vR9nTfBw4s",
      "name": "Riverside Family Medicine",
      "npi": "1234567890"
    },
    {
      "id": "entity_Yd3hNx8cWqJ5Fp7m",
      "name": "Summit Orthopedics",
      "npi": "0987654321"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getlemma.com/llms.txt

Use this file to discover all available pages before exploring further.

Retrieve a list of healthcare providers associated with your organization. Use the provider ID to access detailed information via the Get provider, accounts, checks, and mail endpoints.

Response

data
object[]
The list of provider objects.
{
  "data": [
    {
      "id": "entity_k7mXp2vR9nTfBw4s",
      "name": "Riverside Family Medicine",
      "npi": "1234567890"
    },
    {
      "id": "entity_Yd3hNx8cWqJ5Fp7m",
      "name": "Summit Orthopedics",
      "npi": "0987654321"
    }
  ]
}