> ## Documentation Index
> Fetch the complete documentation index at: https://docs.parse.bot/llms.txt
> Use this file to discover all available pages before exploring further.

# Revise a completed API

> Submit a revision request for a completed API. Describe what to change — the system will classify and queue the revision.



## OpenAPI

````yaml /openapi.json post /dispatch/tasks/{task_id}/revise
openapi: 3.1.0
info:
  title: Parse API
  description: Programmatic API for creating, managing, and executing web scraping APIs.
  version: 2.0.0
servers:
  - url: https://api.parse.bot
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Execute
    description: Call the endpoints of an API you've built — the most common operation
  - name: Marketplace
    description: >-
      Browse and search the public marketplace of pre-built APIs (no auth
      required)
  - name: Dispatch
    description: Create and manage scraping APIs
  - name: Export
    description: Export API specs in standard formats
  - name: Updates
    description: Check and merge upstream improvements to your APIs
paths:
  /dispatch/tasks/{task_id}/revise:
    post:
      tags:
        - Dispatch
      summary: Revise a completed API
      description: >-
        Submit a revision request for a completed API. Describe what to change —
        the system will classify and queue the revision.
      operationId: revise_task
      parameters:
        - name: task_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RevisionRequest'
      responses:
        '200':
          description: Revision queued
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RevisionResponse'
components:
  schemas:
    RevisionRequest:
      type: object
      required:
        - revision
      properties:
        revision:
          type: string
          description: >-
            Natural language description of what to change (e.g. 'add a search
            by category endpoint')
        contributes_to_marketplace:
          type: boolean
          default: true
          description: >-
            Whether this revision contributes back to the shared marketplace
            canonical. TRUE (default) = the revision propagates upstream and is
            free. FALSE = the revision desyncs this API from the canonical and
            is charged. The opt-out is permanent.
    RevisionResponse:
      type: object
      properties:
        task_id:
          type: string
          description: >-
            ID of the revision task (may be the original if no agent run was
            needed)
        revision_type:
          type: string
          description: Always 'revision' — a single agent handles all revision types
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for programmatic access. Create one in the Parse dashboard at
        https://parse.bot (Settings → API Keys). Keys start with 'pmx_'.

````