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

# Get report download URL

> Retrieves a signed URL to download a specific compliance report.

<Note>
  The signed URL is temporary. Use it immediately to download the report file.
</Note>


## OpenAPI

````yaml GET /reports/{reportId}
openapi: 3.1.0
info:
  title: Wavy Node API
  description: >-
    Compliance, fraud prevention, and risk analysis API for payment providers
    and cryptocurrency exchanges in Latin America.
  version: 1.0.0
  contact:
    name: Wavy Node Support
    email: support@wavynode.com
servers:
  - url: https://api.wavynode.com/v1
    description: Production
security:
  - apiKeyAuth: []
paths:
  /reports/{reportId}:
    get:
      tags:
        - Reports
      summary: Get report download URL
      description: Retrieves a signed URL to download a specific compliance report.
      operationId: getReportDownload
      parameters:
        - name: reportId
          in: path
          required: true
          description: The report ID
          schema:
            type: string
      responses:
        '200':
          description: Report download details
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    $ref: '#/components/schemas/ReportDetail'
        '404':
          description: Report not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ReportDetail:
      type: object
      properties:
        name:
          type: string
          description: Report name
        signedUrl:
          type: string
          description: Signed URL to download the report
        period:
          type: string
          description: Report period (YYYY-MM)
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: string
          description: Error code
        message:
          type: string
          description: Error description
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Enter the full value with the `ApiKey` prefix. Example: `ApiKey
        wavy_your-api-key`. The prefix is required for authentication.

````