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

# List screenshots

> List URL screenshots captured for the org by the daily Cloudflare browser-rendering pipeline.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/orgs/{orgSlug}/screenshots
openapi: 3.0.3
info:
  title: Tolmo API
  version: 1.0.0
  description: >-
    The Tolmo REST API. Every endpoint is scoped to one organization and
    authenticated with an API token.
servers:
  - url: https://api.tolmo.com
    description: Production
security:
  - bearerAuth: []
paths:
  /api/v1/orgs/{orgSlug}/screenshots:
    get:
      tags:
        - screenshots
      summary: List screenshots
      description: >-
        List URL screenshots captured for the org by the daily Cloudflare
        browser-rendering pipeline.
      operationId: listUrlScreenshots
      parameters:
        - schema:
            type: string
            format: uri
          in: query
          name: url
          required: false
        - schema:
            type: string
          in: query
          name: resourceKey
          required: false
        - schema:
            type: string
            enum:
              - website
              - saas_deploy
              - cloud_endpoint
          in: query
          name: source
          required: false
        - schema:
            type: string
            format: date-time
          in: query
          name: from
          required: false
        - schema:
            type: string
            format: date-time
          in: query
          name: to
          required: false
        - schema:
            default: 100
            type: integer
            minimum: 0
            exclusiveMinimum: true
            maximum: 500
          in: query
          name: limit
          required: false
        - schema:
            type: boolean
          in: query
          name: successful
          required: false
        - schema:
            type: string
          in: path
          name: orgSlug
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  screenshots:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        url:
                          type: string
                        source:
                          type: string
                          enum:
                            - website
                            - saas_deploy
                            - cloud_endpoint
                        capturedAt:
                          type: string
                        cloudflareStatus:
                          nullable: true
                          type: number
                        bytes:
                          nullable: true
                          type: number
                        error:
                          nullable: true
                          type: string
                      required:
                        - id
                        - url
                        - source
                        - capturedAt
                        - cloudflareStatus
                        - bytes
                        - error
                      additionalProperties: false
                required:
                  - screenshots
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpError'
components:
  schemas:
    HttpError:
      type: object
      properties:
        statusCode:
          type: number
        code:
          type: string
        error:
          type: string
        message:
          type: string
      title: HttpError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Tolmo API token, sent as `Authorization: Bearer <token>`. Either a
        user token (`usr_tok.*`, minted by `tolmo auth login`, scoped to your
        own permissions) or an org API token created in the Tolmo app, for CI
        and automation.

````