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

# List crawlability checks



## OpenAPI

````yaml https://data.otterly.ai/v1/openapi.json get /v1/audits/geo/crawlability-checks
openapi: 3.0.0
info:
  title: Otterly Public API
  version: 1.0.0
servers:
  - url: https://data.otterly.ai
security: []
tags:
  - name: Engines
  - name: Workspaces
  - name: Brand Reports
  - name: Audits
  - name: Accounts
paths:
  /v1/audits/geo/crawlability-checks:
    get:
      tags:
        - Audits
      summary: List crawlability checks
      parameters:
        - schema:
            type: string
            minLength: 1
            description: >-
              Optional. Pagination cursor — pass back the `nextCursor` value
              from a previous response. Omit to fetch the first page.
          required: false
          description: >-
            Optional. Pagination cursor — pass back the `nextCursor` value from
            a previous response. Omit to fetch the first page.
          name: cursor
          in: query
        - schema:
            type: string
            minLength: 1
            example: 01HX7K2YV9D3M8N0G6Q5R4S3T2
            description: >-
              Optional. Filter results to a specific workspace the API key has
              access to. If omitted, results span every workspace the API key
              can read.
          required: false
          description: >-
            Optional. Filter results to a specific workspace the API key has
            access to. If omitted, results span every workspace the API key can
            read.
          name: workspaceId
          in: query
      responses:
        '200':
          description: A list of crawlability checks.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiCrawlabilityChecksList'
        '400':
          description: Validation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiValidationErrorResponse'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorResponse'
        '403':
          description: Forbidden.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicApiErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    PublicApiCrawlabilityChecksList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/PublicApiCrawlabilityCheckListItem'
        paging:
          $ref: '#/components/schemas/PublicApiCursorPageInfo'
      required:
        - items
        - paging
      example:
        items:
          - id: 01HXCRAW1MZB7VAW4PQ8K2N3J9
            workspaceId: 01HX7K2YV9D3M8N0G6Q5R4S3T2
            url: https://www.adidas.com/us/running
            domain: adidas.com
            createdDate: '2026-01-26T08:29:45.000Z'
          - id: 01KGMWMRTN1MVAD6496SJHG3MV
            workspaceId: 01HX7K2YV9D3M8N0G6Q5R4S3T2
            url: https://nike.com
            domain: nike.com
            createdDate: '2026-02-04T17:54:15.000Z'
        paging:
          nextCursor: null
          hasMore: false
    PublicApiValidationErrorResponse:
      type: object
      properties:
        message:
          type: string
        target:
          type: string
        errors:
          type: array
          items:
            type: object
            properties:
              path:
                type: string
              message:
                type: string
              code:
                type: string
            required:
              - path
              - message
              - code
      required:
        - message
        - target
        - errors
      example:
        message: Validation failed
        target: query
        errors:
          - path: country
            message: Required
            code: invalid_type
    PublicApiErrorResponse:
      type: object
      properties:
        message:
          type: string
      required:
        - message
      example:
        message: Report not found
    PublicApiCrawlabilityCheckListItem:
      type: object
      properties:
        id:
          type: string
          minLength: 1
          example: 01HX7K2YV9D3M8N0G6Q5R4S3T2
        workspaceId:
          type: string
        url:
          type: string
        domain:
          type: string
        createdDate:
          type: string
      required:
        - id
        - workspaceId
        - url
        - domain
        - createdDate
      example:
        id: 01HXCRAW1MZB7VAW4PQ8K2N3J9
        workspaceId: 01HX7K2YV9D3M8N0G6Q5R4S3T2
        url: https://www.adidas.com/us/running
        domain: adidas.com
        createdDate: '2026-01-26T08:29:45.000Z'
    PublicApiCursorPageInfo:
      type: object
      properties:
        nextCursor:
          type: string
          nullable: true
        hasMore:
          type: boolean
      required:
        - nextCursor
        - hasMore
      example:
        nextCursor: null
        hasMore: false
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Provide your API key as a Bearer token: `Authorization: Bearer
        YOUR_API_KEY`.

````