Skip to main content
GET
/
v0
/
entities
List entities
curl --request GET \
  --url https://api.getlemma.com/v0/entities \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "entity_k7mXp2vR9nTfBw4s",
      "name": "Riverside Family Medicine"
    },
    {
      "id": "entity_Yd3hNx8cWqJ5Fp7m",
      "name": "Summit Orthopedics"
    }
  ]
}
Retrieve a list of entities associated with your organization. Use the entity ID to access detailed information via the Get entity, accounts, and mail endpoints.

Response

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