Skip to main content
POST
/
api
/
vitals
/
practices
/vitals/practices
curl --request POST \
  --url https://api.anysite.io/api/vitals/practices \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "practice": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@vitals_facility",
    "address": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip_code": "<string>",
    "phone": "<string>",
    "web_url": "<string>",
    "description": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "specialty_count": 123,
    "provider_count": 123,
    "accepts_new_patients": true,
    "accepts_medicare": true,
    "accepts_medicaid": true,
    "languages": [],
    "specialties": [],
    "insurance": [],
    "locations": [],
    "providers": [],
    "profile_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
practice
string
required

Vitals group practice slug or practice profile URL

Minimum string length: 1
Example:

"the-polyclinic-madison-center-056c8df7-9be6-4652-9a37-8618472ec0b5"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@vitals_facility
address
string | null
city
string | null
state
string | null
zip_code
string | null
phone
string | null
web_url
string | null
description
string | null
latitude
number | null
longitude
number | null
rating
number | null
rating_count
integer | null
review_count
integer | null
specialty_count
integer | null
provider_count
integer | null
accepts_new_patients
boolean | null
accepts_medicare
boolean | null
accepts_medicaid
boolean | null
languages
string[]
specialties
string[]
insurance
string[]
locations
VitalsFacilityLocation · object[]
providers
VitalsFacilityProvider · object[]
profile_url
string | null