> ## 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.

# /healthgrades/providers/search

> Search Healthgrades providers by specialty, condition, procedure or name near a US location, with optional filters for gender, minimum patient rating and accepted insurance. Returns each provider's name, gender, specialty, distance, patient rating, office location and telehealth and accepting-new-patients flags.

**Price:** 1 credit



## OpenAPI

````yaml /openapi/local-places.json post /api/healthgrades/providers/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/healthgrades/providers/search:
    post:
      tags:
        - /healthgrades
      summary: /healthgrades/providers/search
      description: >-
        Search Healthgrades providers by specialty, condition, procedure or name
        near a US location, with optional filters for gender, minimum patient
        rating and accepted insurance. Returns each provider's name, gender,
        specialty, distance, patient rating, office location and telehealth and
        accepting-new-patients flags.


        **Price:** 1 credit
      operationId: __api_healthgrades_providers_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HealthgradesProvidersSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HealthgradesProviderSearchResult'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HealthgradesProvidersSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        what:
          type: string
          minLength: 1
        where:
          type: string
          minLength: 1
        gender:
          anyOf:
            - $ref: '#/components/schemas/HealthgradesGender'
            - type: 'null'
        min_rating:
          anyOf:
            - type: integer
              maximum: 5
              minimum: 1
            - type: 'null'
        insurance_codes:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
        sort:
          $ref: '#/components/schemas/HealthgradesProviderSort'
          default: relevance
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - what
        - where
        - count
    HealthgradesProviderSearchResult:
      properties:
        '@type':
          type: string
          default: HealthgradesProviderSearchResult
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        npi:
          anyOf:
            - type: string
            - type: 'null'
        age:
          anyOf:
            - type: integer
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        primary_specialty:
          anyOf:
            - type: string
            - type: 'null'
        specialties:
          items:
            type: string
          type: array
          default: []
        years_since_graduation:
          anyOf:
            - type: integer
            - type: 'null'
        accepts_new_patients:
          anyOf:
            - type: boolean
            - type: 'null'
        is_telehealth:
          anyOf:
            - type: boolean
            - type: 'null'
        is_hg_choice:
          anyOf:
            - type: boolean
            - type: 'null'
        is_patient_favorite:
          anyOf:
            - type: boolean
            - type: 'null'
        distance:
          anyOf:
            - type: number
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_percent:
          anyOf:
            - type: integer
            - 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'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        insurance_codes:
          items:
            type: string
          type: array
          default: []
        affiliated_hospital_ids:
          items:
            type: string
          type: array
          default: []
        strengths:
          items:
            $ref: '#/components/schemas/HealthgradesProviderStrength'
          type: array
          default: []
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HealthgradesGender:
      type: string
      enum:
        - male
        - female
    HealthgradesProviderSort:
      type: string
      enum:
        - relevance
        - distance
        - rating
    HealthgradesProviderStrength:
      properties:
        '@type':
          type: string
          default: HealthgradesProviderStrength
        label:
          anyOf:
            - type: string
            - type: 'null'
        count:
          anyOf:
            - type: integer
            - 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

````