DoseSpot Medications API

Medi-Span drug search and interaction checks.

Operations 8

GET /medications/search Search the drug database #
POST /medications/interactions Check drug interactions #
GET /api/dispenseUnits Get Dispense Units #
GET /api/dispenseUnits/{dispenseUnitId} Get Dispense Unit By Id #
GET /api/medications/searchByRxCUI Get dispensable drugs by rxCUI #
GET /api/medications/search Search for drugs #
GET /api/medications/select Get dispensable drug detail #
GET /api/medications/monograph Get Drug Monograph #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dosespot-medications-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dosespot-medications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Dosespot Medications API
  version: '1.0'
  description: 'Operations tagged Medications across 3 of this provider''s published API definitions: dosespot-openapi.yml, dosespot-rest-api-full-epcs-v2-swagger.json, dosespot-rest-api-jumpstart-epcs-v2-swagger.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://my.dosespot.com/webapi/v2
  description: Production
- url: https://my.staging.dosespot.com/webapi/v2
  description: Staging
- url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
- url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/JumpStart_EPCSV2
tags:
- name: Medications
  description: Medi-Span drug search and interaction checks.
paths:
  /medications/search:
    get:
      operationId: searchMedications
      tags:
      - Medications
      summary: Search the drug database
      description: Search the Medi-Span drug database for medications and supplies by name.
      parameters:
      - name: name
        in: query
        required: true
        schema:
          type: string
      - name: pageNumber
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Matching medications.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MedicationSearchResult'
      security:
      - bearerAuth: []
        subscriptionKey: []
    servers:
    - url: https://my.dosespot.com/webapi/v2
      description: Production
    - url: https://my.staging.dosespot.com/webapi/v2
      description: Staging
  /medications/interactions:
    post:
      operationId: checkMedicationInteractions
      tags:
      - Medications
      summary: Check drug interactions
      description: Run drug-drug and drug-allergy interaction checks for a set of medications.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InteractionCheckRequest'
      responses:
        '200':
          description: Detected interactions.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InteractionCheckResult'
      security:
      - bearerAuth: []
        subscriptionKey: []
    servers:
    - url: https://my.dosespot.com/webapi/v2
      description: Production
    - url: https://my.staging.dosespot.com/webapi/v2
      description: Staging
  /api/dispenseUnits:
    get:
      tags:
      - Medications
      summary: Get Dispense Units
      description: Returns a detailed list of all types of dispense units available for prescription requests
      operationId: Medications_GetStandardDispenseUnitsV2
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListResponse_StandardDispenseUnitType'
            text/json:
              schema:
                $ref: '#/components/schemas/ListResponse_StandardDispenseUnitType'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ListResponse_StandardDispenseUnitType'
            application/xml:
              schema:
                $ref: '#/components/schemas/ListResponse_StandardDispenseUnitType'
            text/xml:
              schema:
                $ref: '#/components/schemas/ListResponse_StandardDispenseUnitType'
    servers:
    - url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
  /api/dispenseUnits/{dispenseUnitId}:
    get:
      tags:
      - Medications
      summary: Get Dispense Unit By Id
      description: Lists the details of a specified dispense unit type
      operationId: Medications_GetStandardDispenseUnitByIDV2
      parameters:
      - name: dispenseUnitId
        in: path
        description: Dispense units id
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemResponse_StandardDispenseUnitType'
            text/json:
              schema:
                $ref: '#/components/schemas/ItemResponse_StandardDispenseUnitType'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ItemResponse_StandardDispenseUnitType'
            application/xml:
              schema:
                $ref: '#/components/schemas/ItemResponse_StandardDispenseUnitType'
            text/xml:
              schema:
                $ref: '#/components/schemas/ItemResponse_StandardDispenseUnitType'
    servers:
    - url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
  /api/medications/searchByRxCUI:
    get:
      tags:
      - Medications
      summary: Get dispensable drugs by rxCUI
      description: Returns a list of drugs based on an rxCUI
      operationId: Medications_MedicationSearchRxCUIV2
      parameters:
      - name: rxCUI
        in: query
        description: ''
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListResponse_MedicationSelectResult'
            text/json:
              schema:
                $ref: '#/components/schemas/ListResponse_MedicationSelectResult'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ListResponse_MedicationSelectResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/ListResponse_MedicationSelectResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/ListResponse_MedicationSelectResult'
    servers:
    - url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
  /api/medications/search:
    get:
      tags:
      - Medications
      summary: Search for drugs
      description: Returns a list of relevant dispensable drugs matching a specified drug name of three or more characters.
      operationId: Medications_MedicationSearchV2
      parameters:
      - name: pageNumber
        in: query
        description: Starting page number (1-based)
        required: false
        schema:
          type: integer
          format: int32
      - name: name
        in: query
        required: true
        schema:
          type: string
          pattern: ^.{2,}$
      - name: drugStatus
        in: query
        required: false
        schema:
          type: string
          enum:
          - Active
          - Inactive
          - All
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedListResponse_MedicationSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/PagedListResponse_MedicationSearchResult'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/PagedListResponse_MedicationSearchResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/PagedListResponse_MedicationSearchResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/PagedListResponse_MedicationSearchResult'
    servers:
    - url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
  /api/medications/select:
    get:
      tags:
      - Medications
      summary: Get dispensable drug detail
      description: Selects a drug based on rxCUI OR NDC OR DispensableDrugId.
      operationId: Medications_MedicationSelectV2
      parameters:
      - name: dispensableDrugId
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: nDC
        in: query
        required: false
        schema:
          type: string
      - name: rXCUI
        in: query
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemResponse_MedicationSelectResult'
            text/json:
              schema:
                $ref: '#/components/schemas/ItemResponse_MedicationSelectResult'
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ItemResponse_MedicationSelectResult'
            application/xml:
              schema:
                $ref: '#/components/schemas/ItemResponse_MedicationSelectResult'
            text/xml:
              schema:
                $ref: '#/components/schemas/ItemResponse_MedicationSelectResult'
    servers:
    - url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
  /api/medications/monograph:
    get:
      tags:
      - Medications
      summary: Get Drug Monograph
      description: Get a drug monograph based on a DispensableDrugId or an NDC.
      operationId: Medications_GetDrugMonographV2
      parameters:
      - name: dispensableDrugId
        in: query
        description: DispensableDrugId
        required: false
        schema:
          type: integer
          format: int32
          maximum: 2147483645
          minimum: 1
      - name: nDC
        in: query
        description: Drug NDC
        required: false
        schema:
          type: string
      - name: monographFormat
        in: query
        description: Return XML or HTML defaults to HTML
        required: false
        schema:
          type: string
          enum:
          - HTML
          - XML
          maximum: 2
          minimum: 1
      responses:
        '200':
          description: HTML or XML of the Drug Monograph or 'We could not locate the drug monograph at this time'.
    servers:
    - url: https://virtserver.swaggerhub.com/DoseSpot/dosespot-staging-rest-api-v2/Full_EPCSV2
components:
  schemas:
    ResultStatus:
      type: object
      properties:
        ResultCode:
          type: string
          description: OK or ERROR.
        ResultDescription:
          type: string
    MedicationSearchResult:
      allOf:
      - $ref: '#/components/schemas/ApiResult'
      - type: object
        properties:
          Items:
            type: array
            items:
              $ref: '#/components/schemas/Medication'
          PageResult:
            $ref: '#/components/schemas/PageResult'
    InteractionCheckRequest:
      type: object
      properties:
        PatientId:
          type: integer
        MedicationIds:
          type: array
          items:
            type: integer
    Medication:
      type: object
      properties:
        NDC:
          type: string
        LexiGenProductId:
          type: integer
        LexiDrugSynId:
          type: integer
        LexiSynonymTypeId:
          type: integer
        Name:
          type: string
        Strength:
          type: string
        GenericProductName:
          type: string
        DrugClassification:
          type: string
        Schedule:
          type: string
          description: DEA schedule for controlled substances.
    InteractionCheckResult:
      allOf:
      - $ref: '#/components/schemas/ApiResult'
      - type: object
        properties:
          Interactions:
            type: array
            items:
              type: object
              properties:
                Severity:
                  type: string
                Description:
                  type: string
    ApiResult:
      type: object
      properties:
        Result:
          $ref: '#/components/schemas/ResultStatus'
    PageResult:
      type: object
      properties:
        CurrentPage:
          type: integer
        TotalPages:
          type: integer
        PageSize:
          type: integer
        HasPrevious:
          type: boolean
        HasNext:
          type: boolean
    Result:
      type: object
      required:
      - ResultCode
      properties:
        ResultCode:
          type: string
          description: The result code of the operation.
        ResultDescription:
          type: string
          description: A description of the result, if there were errors.
      description: Represents the result of a service operation.
    ItemResponse_StandardDispenseUnitType:
      type: object
      properties:
        Item:
          description: The response object.
          $ref: '#/components/schemas/StandardDispenseUnitType'
        Result:
          description: The result of the operation.
          $ref: '#/components/schemas/Result'
      description: Represents a generic response containing a single object.
    ListResponse_MedicationSelectResult:
      type: object
      properties:
        Items:
          type: array
          description: The list of elements to return.
          items:
            $ref: '#/components/schemas/MedicationSelectResult'
        Result:
          description: The result of the operation.
          $ref: '#/components/schemas/Result'
      description: Represents a generic response containing a list of objects.
    MedicationSearchResult_2:
      type: object
      properties:
        DispensableDrugId:
          type: integer
          format: int32
        RoutedDoseFormDrugId:
          type: integer
          format: int32
        NDC:
          type: string
        RXCUI:
          type: integer
          format: int32
        NameWithRouteDoseForm:
          type: string
        Strength:
          type: string
        IsObsolete:
          type: boolean
    PagedListResponse_MedicationSearchResult:
      type: object
      properties:
        Items:
          type: array
          description: The list of elements to return.
          readOnly: true
          items:
            $ref: '#/components/schemas/MedicationSearchResult_2'
        PageResult:
          $ref: '#/components/schemas/PageResult_2'
        Result:
          description: The result of the operation.
          $ref: '#/components/schemas/Result'
    ItemResponse_MedicationSelectResult:
      type: object
      properties:
        Item:
          description: The response object.
          $ref: '#/components/schemas/MedicationSelectResult'
        Result:
          description: The result of the operation.
          $ref: '#/components/schemas/Result'
      description: Represents a generic response containing a single object.
    StandardDispenseUnitType:
      type: object
      properties:
        StandardDispenseUnitTypeID:
          type: integer
          format: int32
        Name:
          type: string
        Abbreviation:
          type: string
        Singular:
          type: string
        Plural:
          type: string
        SingularOrPlural:
          type: string
        PotencyUnitCode:
          type: string
        IsActive:
          type: boolean
    ListResponse_StandardDispenseUnitType:
      type: object
      properties:
        Items:
          type: array
          description: The list of elements to return.
          items:
            $ref: '#/components/schemas/StandardDispenseUnitType'
        Result:
          description: The result of the operation.
          $ref: '#/components/schemas/Result'
      description: Represents a generic response containing a list of objects.
    MedicationSelectResult:
      type: object
      properties:
        DispensableDrugId:
          type: integer
          format: int32
        NDC:
          type: string
        RXCUI:
          type: integer
          format: int32
        DisplayName:
          type: string
        DrugName:
          type: string
        Route:
          type: string
        DoseForm:
          type: string
        Strength:
          type: string
        DispenseUnitId:
          type: integer
          format: int32
        Brand:
          type: boolean
        GenericDrugName:
          type: string
        OTC:
          type: boolean
        IsObsolete:
          type: boolean
        DrugClassification:
          type: string
        Schedule:
          type: integer
          format: int32
        StateSchedule:
          type: array
          items:
            $ref: '#/components/schemas/StateSchedule'
    StateSchedule:
      type: object
      properties:
        StateName:
          type: string
        Schedule:
          type: integer
          format: int32
    PageResult_2:
      type: object
      properties:
        CurrentPage:
          type: integer
          format: int32
        TotalPages:
          type: integer
          format: int32
        PageSize:
          type: integer
          format: int32
        TotalCount:
          type: integer
          format: int32
        HasPrevious:
          type: boolean
          readOnly: true
        HasNext:
          type: boolean
          readOnly: true
    MedicationSearchResult_3:
      type: object
      properties:
        DispensableDrugId:
          type: integer
          format: int32
        RoutedDoseFormDrugId:
          type: integer
          format: int32
        NDC:
          type: string
        RXCUI:
          type: integer
          format: int32
        NameWithRouteDoseForm:
          type: string
        Strength:
          type: string
        IsObsolete:
          type: boolean
    PagedListResponse_MedicationSearchResult_2:
      type: object
      properties:
        Items:
          type: array
          description: The list of elements to return.
          readOnly: true
          items:
            $ref: '#/components/schemas/MedicationSearchResult_3'
        PageResult:
          $ref: '#/components/schemas/PageResult_3'
        Result:
          description: The result of the operation.
          $ref: '#/components/schemas/Result'
    PageResult_3:
      type: object
      properties:
        CurrentPage:
          type: integer
          format: int32
        TotalPages:
          type: integer
          format: int32
        PageSize:
          type: integer
          format: int32
        TotalCount:
          type: integer
          format: int32
        HasPrevious:
          type: boolean
          readOnly: true
        HasNext:
          type: boolean
          readOnly: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'OAuth2 access token obtained from the DoseSpot token endpoint (POST /webapi/v2/connect/token) using your clinic and clinician credentials, sent as an Authorization: Bearer header.'
    subscriptionKey:
      type: apiKey
      in: header
      name: Subscription-Key
      description: Per-application subscription key issued by DoseSpot.
x-refined-from:
- dosespot-openapi.yml
- dosespot-rest-api-full-epcs-v2-swagger.json
- dosespot-rest-api-jumpstart-epcs-v2-swagger.json