> ## 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.

# List scheduled renders

> Returns schedules owned by the authenticated account only.



## OpenAPI

````yaml /api-reference/openapi.json get /render/scheduled
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:
    get:
      tags:
        - Schedules
      summary: List scheduled renders
      description: Returns schedules owned by the authenticated account only.
      operationId: listScheduledRenders
      parameters:
        - name: type
          in: query
          schema:
            type: string
            enum:
              - delayed
              - repeatable
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Account-owned schedules
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScheduleList'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    ScheduleList:
      type: object
      required:
        - success
        - schedules
      properties:
        success:
          const: true
        schedules:
          type: array
          items:
            $ref: '#/components/schemas/Schedule'
        total:
          type: integer
          minimum: 0
    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
    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'
    HttpUrl:
      type: string
      format: uri
      maxLength: 2048
      pattern: ^https?://
    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'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Scrinly API key
      description: Customer API key from the Scrinly dashboard.

````