AristaMD Reviews API

The Reviews API from AristaMD — 2 operation(s) for reviews.

Operations 4

GET /reviews Returns a review from a Request #
POST /reviews Adds reviews to a Request #
GET /reviews/{id} Returns a review from a Request #
PUT /reviews/{id} Update a review from a Request #

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/aristamd-reviews-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

aristamd-reviews-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Aristamd Reviews API
  version: 1.0.0
  description: 'Operations tagged Reviews across 2 of this provider''s published API definitions: aristamd-openapi-original.json, aristamd-reviews-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.aristamd.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Reviews
paths:
  /reviews:
    get:
      tags:
      - Reviews
      summary: Returns a review from a Request
      description: Returns the review identified by the id from a Request
      operationId: get
      parameters:
      - name: association_type
        in: query
        description: Type of request we want to filter
        required: false
        schema:
          type: string
          default: econsult
      - name: association_id
        in: query
        description: Id of the request we want to filter
        required: false
        schema:
          type: string
      - name: question_type
        in: query
        description: Question type we want to filter
        required: false
        schema:
          type: string
      responses:
        '404':
          description: Review not found
        '200':
          description: Review
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Review'
        '400':
          description: Invalid Credentials
        '403':
          description: Unauthorized
    post:
      tags:
      - Reviews
      summary: Adds reviews to a Request
      description: Adds a lists of questions and answeas for a request review.
      operationId: post
      responses:
        '200':
          description: Review Lists
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Review'
        '400':
          description: Invalid Credentials
        '403':
          description: Unauthorized
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Review'
        description: Review Lists
        required: true
  /reviews/{id}:
    get:
      tags:
      - Reviews
      summary: Returns a review from a Request
      description: Returns the review identified by the id from a Request
      operationId: get
      parameters:
      - name: id
        in: path
        description: Review to update
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '404':
          description: Review not found
        '200':
          description: Review
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Review'
        '400':
          description: Invalid Credentials
        '403':
          description: Unauthorized
    put:
      tags:
      - Reviews
      summary: Update a review from a Request
      description: Updates the review identified by the id from a Request
      operationId: post
      parameters:
      - name: id
        in: path
        description: Review to update
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Review
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Review'
        '400':
          description: Invalid Credentials
        '403':
          description: Unauthorized
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Review'
        description: Review to update
        required: true
components:
  schemas:
    Review:
      properties:
        id:
          type: integer
        question_type:
          type: string
        answer:
          type: string
        updated_at:
          type: string
        created_at:
          type: string
      type: object
      xml:
        name: Review
x-refined-from:
- aristamd-openapi-original.json
- aristamd-reviews-api-openapi.yml