Label Studio subpackage_annotationReviews API

The subpackage_annotationReviews API from Label Studio — 2 operation(s) for subpackage_annotationreviews.

Operations 5

GET /api/annotation-reviews/ ✨ List reviews #
POST /api/annotation-reviews/ ✨ Create review #
GET /api/annotation-reviews/{id}/ ✨ Get review #
DELETE /api/annotation-reviews/{id}/ ✨ Delete review #
PATCH /api/annotation-reviews/{id}/ ✨ Update review #

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/label-studio-subpackage-annotationreviews-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

label-studio-subpackage-annotationreviews-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference subpackage_actions Subpackage Annotation Reviews API
  version: 1.0.0
servers:
- url: http://localhost:8000
tags:
- name: subpackage_annotationReviews
paths:
  /api/annotation-reviews/:
    get:
      operationId: list
      summary: ✨ List reviews
      description: "<Card href=\"https://humansignal.com/goenterprise\">\n        <img style=\"pointer-events: none; margin-left: 0px; margin-right: 0px;\" src=\"https://docs.humansignal.com/images/badge.svg\" alt=\"Label Studio Enterprise badge\"/>\n        <p style=\"margin-top: 10px; font-size: 14px;\">\n            This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)\n        </p>\n    </Card>\nList all reviews for a specific annotation ID. Only allowed for organizations with reviewing features enabled."
      tags:
      - subpackage_annotationReviews
      parameters:
      - name: annotation
        in: query
        required: false
        schema:
          type: integer
      - name: annotation__task__project
        in: query
        required: false
        schema:
          type: integer
      - name: ordering
        in: query
        description: Which field to use when ordering the results.
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AnnotationReview'
    post:
      operationId: create
      summary: ✨ Create review
      description: "<Card href=\"https://humansignal.com/goenterprise\">\n        <img style=\"pointer-events: none; margin-left: 0px; margin-right: 0px;\" src=\"https://docs.humansignal.com/images/badge.svg\" alt=\"Label Studio Enterprise badge\"/>\n        <p style=\"margin-top: 10px; font-size: 14px;\">\n            This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)\n        </p>\n    </Card>\nCreate a review for a specific annotation ID. Only allowed for organizations with reviewing features enabled."
      tags:
      - subpackage_annotationReviews
      parameters:
      - name: async_postprocess
        in: query
        description: Whether to postprocess the review asynchronously.
        required: false
        schema:
          type: boolean
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnnotationReview'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnnotationReviewRequest'
  /api/annotation-reviews/{id}/:
    get:
      operationId: get
      summary: ✨ Get review
      description: "<Card href=\"https://humansignal.com/goenterprise\">\n        <img style=\"pointer-events: none; margin-left: 0px; margin-right: 0px;\" src=\"https://docs.humansignal.com/images/badge.svg\" alt=\"Label Studio Enterprise badge\"/>\n        <p style=\"margin-top: 10px; font-size: 14px;\">\n            This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)\n        </p>\n    </Card>\nRetrieve a specific review by ID for an annotation. Only allowed for organizations with reviewing features enabled."
      tags:
      - subpackage_annotationReviews
      parameters:
      - name: id
        in: path
        description: A unique integer value identifying this annotation review.
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnnotationReview'
    delete:
      operationId: delete
      summary: ✨ Delete review
      description: "<Card href=\"https://humansignal.com/goenterprise\">\n        <img style=\"pointer-events: none; margin-left: 0px; margin-right: 0px;\" src=\"https://docs.humansignal.com/images/badge.svg\" alt=\"Label Studio Enterprise badge\"/>\n        <p style=\"margin-top: 10px; font-size: 14px;\">\n            This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)\n        </p>\n    </Card>\nDelete a review by ID. Only allowed for organizations with reviewing features enabled."
      tags:
      - subpackage_annotationReviews
      parameters:
      - name: id
        in: path
        description: A unique integer value identifying this annotation review.
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
    patch:
      operationId: update
      summary: ✨ Update review
      description: "<Card href=\"https://humansignal.com/goenterprise\">\n        <img style=\"pointer-events: none; margin-left: 0px; margin-right: 0px;\" src=\"https://docs.humansignal.com/images/badge.svg\" alt=\"Label Studio Enterprise badge\"/>\n        <p style=\"margin-top: 10px; font-size: 14px;\">\n            This endpoint is not available in Label Studio Community Edition. [Learn more about Label Studio Enterprise](https://humansignal.com/goenterprise)\n        </p>\n    </Card>\nUpdate a specific review by ID. Only allowed for organizations with reviewing features enabled."
      tags:
      - subpackage_annotationReviews
      parameters:
      - name: id
        in: path
        description: A unique integer value identifying this annotation review.
        required: true
        schema:
          type: integer
      - name: Authorization
        in: header
        description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnnotationReview'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchedAnnotationReviewRequest'
components:
  schemas:
    AnnotationReview:
      type: object
      properties:
        accepted:
          type: boolean
          description: Accepted or rejected (if false) flag
        annotation:
          type: integer
          description: Corresponding annotation
        created_at:
          type: string
          format: date-time
          description: Creation time
        created_by:
          type: integer
          description: User who made this review
        fixed_annotation_history:
          type:
          - integer
          - 'null'
          description: Fixed annotation history item by the reviewer
        id:
          type: integer
        last_annotation_history:
          type:
          - integer
          - 'null'
        previous_annotation_history:
          type:
          - integer
          - 'null'
          description: Previous annotation history item by the annotator
        remove_from_queue:
          type:
          - boolean
          - 'null'
        result:
          oneOf:
          - description: Any type
          - type: 'null'
        started_at:
          type:
          - string
          - 'null'
          format: date-time
        state:
          type: string
      required:
      - annotation
      - created_at
      - created_by
      - fixed_annotation_history
      - id
      - previous_annotation_history
      - state
      description: 'AnnotationReview Serializer with FSM state support.


        Note: The ''state'' field will be populated from the queryset annotation

        if present, preventing N+1 queries. Use .with_state() on your queryset.


        The state field display is controlled by both:

        - fflag_feat_fit_568_finite_state_management (FSM background calculations)

        - fflag_feat_fit_710_fsm_state_fields (state field display in APIs)'
      title: AnnotationReview
    PatchedAnnotationReviewRequest:
      type: object
      properties:
        accepted:
          type: boolean
          description: Accepted or rejected (if false) flag
        annotation:
          type: integer
          description: Corresponding annotation
        comment:
          type:
          - string
          - 'null'
        last_annotation_history:
          type:
          - integer
          - 'null'
        remove_from_queue:
          type:
          - boolean
          - 'null'
        result:
          oneOf:
          - description: Any type
          - type: 'null'
        started_at:
          type:
          - string
          - 'null'
          format: date-time
      description: 'AnnotationReview Serializer with FSM state support.


        Note: The ''state'' field will be populated from the queryset annotation

        if present, preventing N+1 queries. Use .with_state() on your queryset.


        The state field display is controlled by both:

        - fflag_feat_fit_568_finite_state_management (FSM background calculations)

        - fflag_feat_fit_710_fsm_state_fields (state field display in APIs)'
      title: PatchedAnnotationReviewRequest
    AnnotationReviewRequest:
      type: object
      properties:
        accepted:
          type: boolean
          description: Accepted or rejected (if false) flag
        annotation:
          type: integer
          description: Corresponding annotation
        comment:
          type:
          - string
          - 'null'
        last_annotation_history:
          type:
          - integer
          - 'null'
        remove_from_queue:
          type:
          - boolean
          - 'null'
        result:
          oneOf:
          - description: Any type
          - type: 'null'
        started_at:
          type:
          - string
          - 'null'
          format: date-time
      required:
      - annotation
      description: 'AnnotationReview Serializer with FSM state support.


        Note: The ''state'' field will be populated from the queryset annotation

        if present, preventing N+1 queries. Use .with_state() on your queryset.


        The state field display is controlled by both:

        - fflag_feat_fit_568_finite_state_management (FSM background calculations)

        - fflag_feat_fit_710_fsm_state_fields (state field display in APIs)'
      title: AnnotationReviewRequest
  securitySchemes:
    Token:
      type: apiKey
      in: header
      name: Authorization
      description: 'The token (or API key) must be passed as a request header. You can find your user token on the User Account page in Label Studio. Example: <br><pre><code class="language-bash">curl https://label-studio-host/api/projects -H "Authorization: Token [your-token]"</code></pre>'