> ## 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/search

> Search Vitals doctors by medical specialty, optionally narrowed to a US state. Returns name, gender, degrees, NPI, primary specialty, location, distance, years of experience, accepted-new-patients and telehealth flags, spoken languages, patient star rating with counts and the profile URL for each provider.

**Price:** 10 credits per 65 results



## OpenAPI

````yaml /openapi/local-places.json post /api/vitals/doctors/search
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/search:
    post:
      tags:
        - /vitals
      summary: /vitals/doctors/search
      description: >-
        Search Vitals doctors by medical specialty, optionally narrowed to a US
        state. Returns name, gender, degrees, NPI, primary specialty, location,
        distance, years of experience, accepted-new-patients and telehealth
        flags, spoken languages, patient star rating with counts and the profile
        URL for each provider.


        **Price:** 10 credits per 65 results
      operationId: __api_vitals_doctors_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VitalsDoctorsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VitalsDoctorSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    VitalsDoctorsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        specialty:
          type: string
          minLength: 1
        state:
          anyOf:
            - $ref: '#/components/schemas/VitalsState'
            - type: 'null'
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - specialty
        - count
    VitalsDoctorSearchResult:
      properties:
        '@type':
          type: string
          default: VitalsDoctorSearchResult
        id:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        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'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        degrees:
          items:
            type: string
          type: array
          default: []
        npi:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        primary_specialty:
          anyOf:
            - type: string
            - type: 'null'
        specialties_text:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        distance:
          anyOf:
            - type: number
            - type: 'null'
        years_of_experience:
          anyOf:
            - type: integer
            - type: 'null'
        accepts_new_patients:
          anyOf:
            - type: boolean
            - type: 'null'
        is_telehealth:
          anyOf:
            - type: boolean
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    VitalsState:
      type: string
      enum:
        - al
        - ak
        - az
        - ar
        - ca
        - co
        - ct
        - de
        - dc
        - fl
        - ga
        - hi
        - id
        - il
        - in
        - ia
        - ks
        - ky
        - la
        - me
        - md
        - ma
        - mi
        - mn
        - ms
        - mo
        - mt
        - ne
        - nv
        - nh
        - nj
        - nm
        - ny
        - nc
        - nd
        - oh
        - ok
        - or
        - pa
        - ri
        - sc
        - sd
        - tn
        - tx
        - ut
        - vt
        - va
        - wa
        - wv
        - wi
        - wy
    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

````