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

# Get report

> Retrieve a scan report by ID.

# Get report

Retrieves the report for a previously initiated scan.

## Pending reports

If the report is not ready, the API may return `404` with a `pending` status. Retry with backoff.


## OpenAPI

````yaml openapi/rtswpscan.json GET /report/{report_id}
openapi: 3.0.0
info:
  title: RTS WPScan API
  description: RTS WPScan API for performing WordPress scans and retrieving reports
  version: '1.0'
servers:
  - url: https://rtswpscan.slayers.tech
security: []
paths:
  /report/{report_id}:
    get:
      summary: Get the report for a specific scan
      parameters:
        - name: report_id
          in: path
          description: ID of the report to retrieve
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Report found
          content:
            '*/*':
              schema:
                type: object
        '401':
          description: Unauthorized
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Unauthorized
        '404':
          description: Report not found
          content:
            '*/*':
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: pending
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      name: API-Key
      in: header

````