> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /vitals/doctors

> Get a Vitals doctor profile by slug (e.g. mershed-alsamara-ec1iuw) or profile URL: full name, gender, degrees, NPI, specialties, areas of expertise, education, licenses, certifications, spoken languages, years of experience, office locations, accepted insurance plans, awards, affiliated hospitals, biography, patient star rating with per-star breakdown, review counts and an AI-generated review summary.

**Price:** 10 credits

**⚠️ Common errors:** 412: Doctor not found (well-formed slug with no Vitals profile)



## OpenAPI

````yaml /openapi/local-places.json post /api/vitals/doctors
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/vitals/doctors:
    post:
      tags:
        - /vitals
      summary: /vitals/doctors
      description: >-
        Get a Vitals doctor profile by slug (e.g. mershed-alsamara-ec1iuw) or
        profile URL: full name, gender, degrees, NPI, specialties, areas of
        expertise, education, licenses, certifications, spoken languages, years
        of experience, office locations, accepted insurance plans, awards,
        affiliated hospitals, biography, patient star rating with per-star
        breakdown, review counts and an AI-generated review summary.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Doctor not found (well-formed slug with no
        Vitals profile)
      operationId: __api_vitals_doctors_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VitalsDoctorsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VitalsDoctor'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    VitalsDoctorsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        doctor:
          type: string
          minLength: 1
      type: object
      required:
        - doctor
    VitalsDoctor:
      properties:
        '@type':
          type: string
          default: VitalsDoctor
        id:
          type: string
        name:
          type: string
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        middle_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        prefix:
          anyOf:
            - type: string
            - type: 'null'
        degrees:
          items:
            type: string
          type: array
          default: []
        gender:
          anyOf:
            - type: string
            - type: 'null'
        npi:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        primary_specialty:
          anyOf:
            - type: string
            - type: 'null'
        specialties:
          items:
            $ref: '#/components/schemas/VitalsDoctorSpecialty'
          type: array
          default: []
        expertise:
          items:
            type: string
          type: array
          default: []
        education:
          items:
            $ref: '#/components/schemas/VitalsDoctorEducation'
          type: array
          default: []
        licenses:
          items:
            $ref: '#/components/schemas/VitalsDoctorLicense'
          type: array
          default: []
        certifications:
          items:
            type: string
          type: array
          default: []
        languages:
          items:
            type: string
          type: array
          default: []
        years_of_experience:
          anyOf:
            - type: integer
            - type: 'null'
        accepts_new_patients:
          anyOf:
            - type: boolean
            - type: 'null'
        is_telehealth:
          anyOf:
            - type: boolean
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        ratings_per_star:
          items:
            $ref: '#/components/schemas/VitalsRatingStar'
          type: array
          default: []
        locations:
          items:
            $ref: '#/components/schemas/VitalsDoctorLocation'
          type: array
          default: []
        insurance:
          items:
            type: string
          type: array
          default: []
        awards:
          items:
            $ref: '#/components/schemas/VitalsDoctorAward'
          type: array
          default: []
        affiliated_hospitals:
          items:
            $ref: '#/components/schemas/VitalsAffiliatedHospital'
          type: array
          default: []
        vitals_score:
          anyOf:
            - type: integer
            - type: 'null'
        review_summary:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    VitalsDoctorSpecialty:
      properties:
        '@type':
          type: string
          default: VitalsDoctorSpecialty
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        practicing_name:
          anyOf:
            - type: string
            - type: 'null'
        slug:
          anyOf:
            - type: string
            - type: 'null'
        is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    VitalsDoctorEducation:
      properties:
        '@type':
          type: string
          default: VitalsDoctorEducation
        type:
          anyOf:
            - type: string
            - type: 'null'
        institution:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    VitalsDoctorLicense:
      properties:
        '@type':
          type: string
          default: VitalsDoctorLicense
        type:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    VitalsRatingStar:
      properties:
        '@type':
          type: string
          default: VitalsRatingStar
        stars:
          type: integer
        count:
          type: integer
        percentage:
          type: integer
      type: object
      required:
        - stars
        - count
        - percentage
    VitalsDoctorLocation:
      properties:
        '@type':
          type: string
          default: VitalsDoctorLocation
        name:
          anyOf:
            - type: string
            - type: 'null'
        practice_name:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
        accepts_medicare:
          anyOf:
            - type: boolean
            - type: 'null'
        accepts_medicaid:
          anyOf:
            - type: boolean
            - type: 'null'
        practice_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    VitalsDoctorAward:
      properties:
        '@type':
          type: string
          default: VitalsDoctorAward
        year:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    VitalsAffiliatedHospital:
      properties:
        '@type':
          type: string
          default: VitalsAffiliatedHospital
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        slug:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````