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

> Get a Healthgrades provider profile by id (e.g. y25mp), profile slug or profile URL: full name, gender, NPI, age, medical and practicing specialties, board certifications, education, spoken languages, office locations with hours, accepted insurance, patient star rating with per-star breakdown and subcategory scores, clinical experience (conditions and procedures treated), affiliated hospitals with awards, highlights and biography.

**Price:** 1 credit

**⚠️ Common errors:** 412: Provider not found (well-formed id with no Healthgrades profile)



## OpenAPI

````yaml /openapi/local-places.json post /api/healthgrades/providers
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:
    post:
      tags:
        - /healthgrades
      summary: /healthgrades/providers
      description: >-
        Get a Healthgrades provider profile by id (e.g. y25mp), profile slug or
        profile URL: full name, gender, NPI, age, medical and practicing
        specialties, board certifications, education, spoken languages, office
        locations with hours, accepted insurance, patient star rating with
        per-star breakdown and subcategory scores, clinical experience
        (conditions and procedures treated), affiliated hospitals with awards,
        highlights and biography.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Provider not found (well-formed id with no
        Healthgrades profile)
      operationId: __api_healthgrades_providers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HealthgradesProvidersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/HealthgradesProvider'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HealthgradesProvidersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        provider:
          type: string
          minLength: 1
      type: object
      required:
        - provider
    HealthgradesProvider:
      properties:
        '@type':
          type: string
          default: HealthgradesProvider
        id:
          type: string
        name:
          type: string
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        last_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'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        primary_specialty:
          anyOf:
            - type: string
            - type: 'null'
        medical_specialty:
          anyOf:
            - type: string
            - type: 'null'
        specialties:
          items:
            $ref: '#/components/schemas/HealthgradesProviderSpecialty'
          type: array
          default: []
        professional_type:
          anyOf:
            - type: string
            - type: 'null'
        accepts_new_patients:
          anyOf:
            - type: boolean
            - type: 'null'
        is_telehealth:
          anyOf:
            - type: boolean
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        education:
          items:
            $ref: '#/components/schemas/HealthgradesEducation'
          type: array
          default: []
        board_certifications:
          items:
            $ref: '#/components/schemas/HealthgradesBoardCertification'
          type: array
          default: []
        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/HealthgradesRatingStar'
          type: array
          default: []
        review_subscores:
          items:
            $ref: '#/components/schemas/HealthgradesReviewSubscore'
          type: array
          default: []
        highlights:
          items:
            $ref: '#/components/schemas/HealthgradesHighlight'
          type: array
          default: []
        offices:
          items:
            $ref: '#/components/schemas/HealthgradesOffice'
          type: array
          default: []
        insurance:
          items:
            $ref: '#/components/schemas/HealthgradesInsurance'
          type: array
          default: []
        experience:
          items:
            $ref: '#/components/schemas/HealthgradesExperience'
          type: array
          default: []
        affiliated_hospitals:
          items:
            $ref: '#/components/schemas/HealthgradesAffiliatedHospital'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    HealthgradesProviderSpecialty:
      properties:
        '@type':
          type: string
          default: HealthgradesProviderSpecialty
        name:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
        is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
        directory_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesEducation:
      properties:
        '@type':
          type: string
          default: HealthgradesEducation
        education_type:
          anyOf:
            - type: string
            - type: 'null'
        institution:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesBoardCertification:
      properties:
        '@type':
          type: string
          default: HealthgradesBoardCertification
        name:
          anyOf:
            - type: string
            - type: 'null'
        board:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesRatingStar:
      properties:
        '@type':
          type: string
          default: HealthgradesRatingStar
        stars:
          type: integer
        count:
          type: integer
        percentage:
          type: integer
      type: object
      required:
        - stars
        - count
        - percentage
    HealthgradesReviewSubscore:
      properties:
        '@type':
          type: string
          default: HealthgradesReviewSubscore
        category:
          anyOf:
            - type: string
            - type: 'null'
        score:
          anyOf:
            - type: number
            - type: 'null'
        rating_text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesHighlight:
      properties:
        '@type':
          type: string
          default: HealthgradesHighlight
        category:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesOffice:
      properties:
        '@type':
          type: string
          default: HealthgradesOffice
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        practice_name:
          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'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        fax:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
        directions_url:
          anyOf:
            - type: string
            - type: 'null'
        hours:
          items:
            $ref: '#/components/schemas/HealthgradesOfficeHours'
          type: array
          default: []
      type: object
    HealthgradesInsurance:
      properties:
        '@type':
          type: string
          default: HealthgradesInsurance
        payor:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
        plans:
          items:
            $ref: '#/components/schemas/HealthgradesInsurancePlan'
          type: array
          default: []
      type: object
    HealthgradesExperience:
      properties:
        '@type':
          type: string
          default: HealthgradesExperience
        name:
          anyOf:
            - type: string
            - type: 'null'
        code:
          anyOf:
            - type: string
            - type: 'null'
        is_condition:
          anyOf:
            - type: boolean
            - type: 'null'
        percentile:
          anyOf:
            - type: integer
            - type: 'null'
        volume:
          anyOf:
            - type: integer
            - type: 'null'
        national_ranking:
          anyOf:
            - type: integer
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesAffiliatedHospital:
      properties:
        '@type':
          type: string
          default: HealthgradesAffiliatedHospital
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        total_award_count:
          anyOf:
            - type: integer
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        awards:
          items:
            $ref: '#/components/schemas/HealthgradesAward'
          type: array
          default: []
      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
    HealthgradesOfficeHours:
      properties:
        '@type':
          type: string
          default: HealthgradesOfficeHours
        day:
          anyOf:
            - type: string
            - type: 'null'
        start_time:
          anyOf:
            - type: string
            - type: 'null'
        end_time:
          anyOf:
            - type: string
            - type: 'null'
        is_closed:
          anyOf:
            - type: boolean
            - type: 'null'
        is_open_24h:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    HealthgradesInsurancePlan:
      properties:
        '@type':
          type: string
          default: HealthgradesInsurancePlan
        name:
          anyOf:
            - type: string
            - type: 'null'
        plan_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HealthgradesAward:
      properties:
        '@type':
          type: string
          default: HealthgradesAward
        code:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        years:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        is_top_award:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````