Skip to main content
POST
/
api
/
vitals
/
doctors
/vitals/doctors
curl --request POST \
  --url https://api.anysite.io/api/vitals/doctors \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "doctor": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@vitals_doctor",
    "first_name": "<string>",
    "middle_name": "<string>",
    "last_name": "<string>",
    "prefix": "<string>",
    "degrees": [],
    "gender": "<string>",
    "npi": "<string>",
    "image": "<string>",
    "alias": "<string>",
    "profile_url": "<string>",
    "primary_specialty": "<string>",
    "specialties": [],
    "expertise": [],
    "education": [],
    "licenses": [],
    "certifications": [],
    "languages": [],
    "years_of_experience": 123,
    "accepts_new_patients": true,
    "is_telehealth": true,
    "city": "<string>",
    "state": "<string>",
    "zip_code": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rating": 123,
    "rating_count": 123,
    "review_count": 123,
    "ratings_per_star": [],
    "locations": [],
    "insurance": [],
    "awards": [],
    "affiliated_hospitals": [],
    "vitals_score": 123,
    "description": "<string>",
    "review_summary": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
doctor
string
required

Vitals doctor slug (e.g. mershed-alsamara-ec1iuw) or a doctor profile URL

Minimum string length: 1
Example:

"mershed-alsamara-ec1iuw"

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_doctor
first_name
string | null
middle_name
string | null
last_name
string | null
prefix
string | null
degrees
string[]
gender
string | null
npi
string | null
image
string | null
alias
string | null
profile_url
string | null
primary_specialty
string | null
specialties
VitalsDoctorSpecialty · object[]
expertise
string[]
education
VitalsDoctorEducation · object[]
licenses
VitalsDoctorLicense · object[]
certifications
string[]
languages
string[]
years_of_experience
integer | null
accepts_new_patients
boolean | null
is_telehealth
boolean | null
city
string | null
state
string | null
zip_code
string | null
latitude
number | null
longitude
number | null
rating
number | null
rating_count
integer | null
review_count
integer | null
ratings_per_star
VitalsRatingStar · object[]
locations
VitalsDoctorLocation · object[]
insurance
string[]
awards
VitalsDoctorAward · object[]
affiliated_hospitals
VitalsAffiliatedHospital · object[]
vitals_score
integer | null
description
string | null
review_summary
string | null