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

# /ratemds/doctors

> Get a RateMDs doctor profile by slug (e.g. dr-angelo-ayar-tamarac-fl-us), numeric id or profile URL: full name, gender, credential, primary and secondary specialties, patient star rating with the four-criteria breakdown (staff, punctuality, helpfulness, knowledge), per-star distribution, review count, local ranking, biography, spoken languages, areas of expertise, education, accepted insurance plans, awards, publications, office locations and affiliated facilities.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/local-places.json post /api/ratemds/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/ratemds/doctors:
    post:
      tags:
        - /ratemds
      summary: /ratemds/doctors
      description: >-
        Get a RateMDs doctor profile by slug (e.g.
        dr-angelo-ayar-tamarac-fl-us), numeric id or profile URL: full name,
        gender, credential, primary and secondary specialties, patient star
        rating with the four-criteria breakdown (staff, punctuality,
        helpfulness, knowledge), per-star distribution, review count, local
        ranking, biography, spoken languages, areas of expertise, education,
        accepted insurance plans, awards, publications, office locations and
        affiliated facilities.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Doctor not found (well-formed id with no
        RateMDs profile)
      operationId: __api_ratemds_doctors_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RatemdsDoctorsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RatemdsDoctor'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RatemdsDoctorsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        doctor:
          type: string
          minLength: 1
      type: object
      required:
        - doctor
    RatemdsDoctor:
      properties:
        '@type':
          type: string
          default: RatemdsDoctor
        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'
        gender:
          anyOf:
            - type: string
            - type: 'null'
        credential:
          anyOf:
            - type: string
            - type: 'null'
        primary_specialty:
          anyOf:
            - type: string
            - type: 'null'
        specialty_slug:
          anyOf:
            - type: string
            - type: 'null'
        secondary_specialties:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
        verified:
          anyOf:
            - type: boolean
            - type: 'null'
        accepting_patients:
          anyOf:
            - type: boolean
            - type: 'null'
        accepting_virtual_appointments:
          anyOf:
            - type: boolean
            - type: 'null'
        accepting_cdcp:
          anyOf:
            - type: boolean
            - type: 'null'
        appointments_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_staff:
          anyOf:
            - type: number
            - type: 'null'
        rating_punctuality:
          anyOf:
            - type: number
            - type: 'null'
        rating_helpfulness:
          anyOf:
            - type: number
            - type: 'null'
        rating_knowledge:
          anyOf:
            - type: number
            - type: 'null'
        ratings_per_star:
          items:
            $ref: '#/components/schemas/RatemdsRatingStar'
          type: array
          default: []
        rank:
          anyOf:
            - type: integer
            - type: 'null'
        rank_total:
          anyOf:
            - type: integer
            - type: 'null'
        languages:
          items:
            type: string
          type: array
          default: []
        expertise:
          items:
            type: string
          type: array
          default: []
        education:
          items:
            $ref: '#/components/schemas/RatemdsEducation'
          type: array
          default: []
        insurance:
          items:
            type: string
          type: array
          default: []
        awards:
          items:
            type: string
          type: array
          default: []
        publications:
          items:
            type: string
          type: array
          default: []
        locations:
          items:
            $ref: '#/components/schemas/RatemdsDoctorLocation'
          type: array
          default: []
        affiliated_facilities:
          items:
            $ref: '#/components/schemas/RatemdsAffiliatedFacility'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    RatemdsRatingStar:
      properties:
        '@type':
          type: string
          default: RatemdsRatingStar
        stars:
          type: integer
        count:
          type: integer
      type: object
      required:
        - stars
        - count
    RatemdsEducation:
      properties:
        '@type':
          type: string
          default: RatemdsEducation
        institution:
          type: string
        year:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - institution
    RatemdsDoctorLocation:
      properties:
        '@type':
          type: string
          default: RatemdsDoctorLocation
        name:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        suite:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        is_primary:
          anyOf:
            - type: boolean
            - type: 'null'
        profile_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    RatemdsAffiliatedFacility:
      properties:
        '@type':
          type: string
          default: RatemdsAffiliatedFacility
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - 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

````