Pavoot Reviews API

The Reviews API from Pavoot — 5 operation(s) for reviews.

Operations 5

GET /reviews List Reviews Endpoint #
GET /reviews/flags List Review Flags Endpoint #
POST /reviews/flags/clear Clear Review Flags Endpoint #
POST /reviews/close Close Review Endpoint #
POST /reviews/reopen Reopen Review Endpoint #

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/pavoot-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

pavoot-reviews-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast Reviews API
  version: 0.1.0
tags:
- name: Reviews
paths:
  /reviews:
    get:
      summary: List Reviews Endpoint
      description: 'Reviews overview: one row per share link with a review enabled.


        The top level of the review surface. Flags take effect the moment a recipient sets them, so

        the team''s actual question is "where do my reviews stand" — which are open, who responded,

        how much came back — rather than a wall of every rejected image.'
      operationId: list_reviews_endpoint_reviews_get
      parameters:
      - name: projectId
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
          - type: 'null'
          title: Projectid
      - name: projectIds[]
        in: query
        required: false
        schema:
          type: array
          items:
            type: integer
          default: []
          title: Projectids[]
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Reviews
  /reviews/flags:
    get:
      summary: List Review Flags Endpoint
      description: 'Active do-not-publish flags with provenance, for the Review page.


        Scope by share link (the jump from the share editor) or by project(s). All-Projects mode

        passes projectIds[] the same way /getShares does; the set is then narrowed to the projects

        where the caller actually holds sharelinks.review.manage, so a union can never surface

        flags from a project they can''t manage.'
      operationId: list_review_flags_endpoint_reviews_flags_get
      parameters:
      - name: projectId
        in: query
        required: false
        schema:
          anyOf:
          - type: integer
          - type: 'null'
          title: Projectid
      - name: projectIds[]
        in: query
        required: false
        schema:
          type: array
          items:
            type: integer
          default: []
          title: Projectids[]
      - name: shareId
        in: query
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Shareid
      - name: page
        in: query
        required: false
        schema:
          type: integer
          default: 1
          title: Page
      - name: pageSize
        in: query
        required: false
        schema:
          type: integer
          default: 50
          title: Pagesize
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Reviews
  /reviews/flags/clear:
    post:
      summary: Clear Review Flags Endpoint
      description: '"Approve anyway": clear flags so the images become visible again.


        Authorised per flag: a caller may only clear flags on images in projects where they hold

        sharelinks.review.manage, so a cross-project Review page can''t be used to clear someone

        else''s flags by id. Sets cleared_at rather than deleting, keeping the decision history.'
      operationId: clear_review_flags_endpoint_reviews_flags_clear_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClearReviewFlagsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Reviews
  /reviews/close:
    post:
      summary: Close Review Endpoint
      description: 'Stop the recipient flagging on a link.


        This is the manual lock the client asked for instead of a deadline — management can take

        days, and the review ends when the team says so. Closing does NOT break the link: viewing

        and downloads keep working, only the flag tool disappears.'
      operationId: close_review_endpoint_reviews_close_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReviewLifecycleRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Reviews
  /reviews/reopen:
    post:
      summary: Reopen Review Endpoint
      description: Reopen a closed review so the recipient can flag again.
      operationId: reopen_review_endpoint_reviews_reopen_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReviewLifecycleRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Reviews
components:
  schemas:
    ClearReviewFlagsRequest:
      properties:
        flagIds:
          items:
            type: string
          type: array
          title: Flagids
      type: object
      required:
      - flagIds
      title: ClearReviewFlagsRequest
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    ReviewLifecycleRequest:
      properties:
        shareId:
          type: string
          title: Shareid
      type: object
      required:
      - shareId
      title: ReviewLifecycleRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError