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

# Cancel a scheduled render

> An unknown ID and a schedule owned by another account both return 404.



## OpenAPI

````yaml /api-reference/openapi.json delete /render/scheduled/{id}
openapi: 3.1.0
info:
  title: Scrinly Browser API
  version: '2026-08-14'
  description: >-
    Public API for browser rendering, screenshots, structured extraction,
    grounded page-reconstruction blueprints, batches, jobs, crawls, schedules,
    and usage.
servers:
  - url: https://api.scrinly.com
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Rendering
    description: Synchronous and asynchronous browser renders.
  - name: Batches
    description: Create multiple asynchronous render jobs.
  - name: Jobs
    description: Inspect and retry account-owned jobs.
  - name: Crawls
    description: Traverse a site and collect page results.
  - name: Schedules
    description: Create and manage account-owned render schedules.
  - name: Usage
    description: Read account credit usage.
paths:
  /render/scheduled/{id}:
    delete:
      tags:
        - Schedules
      summary: Cancel a scheduled render
      description: An unknown ID and a schedule owned by another account both return 404.
      operationId: cancelScheduledRender
      parameters:
        - $ref: '#/components/parameters/ScheduleId'
      responses:
        '200':
          description: Schedule cancelled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Schedule'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    ScheduleId:
      name: id
      in: path
      required: true
      schema:
        type: string
  schemas:
    Schedule:
      type: object
      required:
        - id
        - type
        - status
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - delayed
            - repeatable
        status:
          type: string
          enum:
            - active
            - completed
            - cancelled
        url:
          $ref: '#/components/schemas/HttpUrl'
        scheduleAt:
          type: string
          format: date-time
        pattern:
          type: string
        nextRunAt:
          type:
            - string
            - 'null'
          format: date-time
        runCount:
          type: integer
          minimum: 0
        limit:
          type:
            - integer
            - 'null'
          minimum: 1
    HttpUrl:
      type: string
      format: uri
      maxLength: 2048
      pattern: ^https?://
    Error:
      type: object
      properties:
        success:
          type: boolean
          const: false
        error:
          type: string
        type:
          type: string
        message:
          type: string
        fields:
          type: array
          items:
            $ref: '#/components/schemas/FieldError'
    FieldError:
      type: object
      properties:
        field:
          type: string
        message:
          type: string
      required:
        - field
        - message
  responses:
    Unauthorized:
      description: Missing, unknown, or revoked API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found for this account
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Scrinly API key
      description: Customer API key from the Scrinly dashboard.

````