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

# Get Download Link

> Get a download link for red team test results



## OpenAPI

````yaml GET /redteam/download-link
openapi: 3.0.0
info:
  title: Enkrypt AI APIs
  version: 2.0.0
servers:
  - url: https://api.enkryptai.com
security:
  - apiKeyAuth: []
tags:
  - name: Guardrails
  - name: Code of Conduct
  - name: Endpoints
  - name: Datasets
  - name: Redteam
  - name: Deployments
  - name: AI Proxy
  - name: Leaderboard
  - name: Archived
  - name: MCP Hub
    description: >-
      MCP Hub vulnerability scanning APIs. Submitting scans (the POST endpoints)
      is open to all authenticated callers. The scan **retrieval** APIs — Get
      Scan Job Status, Get Complete Scan Results, List Scans, and Get MCP Hub
      Scan Statistics (the GET endpoints) — are an **enterprise data-license
      feature**: they require your organization to have MCP Hub API access
      enabled by Enkrypt, otherwise they return `403`. Contact us at
      support@enkryptai.com to enable access.
  - name: MCP Registry Servers
  - name: MCP Gateways
  - name: MCP Playground
paths:
  /redteam/download-link:
    get:
      tags:
        - Redteam
      summary: Get Download Link
      description: Get a download link for red team test results
      operationId: redteam_download_link_get
      parameters:
        - name: X-Enkrypt-Test-Name
          in: header
          required: true
          schema:
            title: Test Name
            type: string
            description: The name of the red team test
            example: Redteam Test 243dde
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RedteamDownloadLinkResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Test name is required
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    example: Test not found
components:
  schemas:
    RedteamDownloadLinkResponse:
      title: RedteamDownloadLinkResponse
      type: object
      properties:
        link:
          title: Download Link
          type: string
          description: The download link for the red team test results
          example: https://app.enkryptai.com/redteam/download-link/xxxx
        expiry:
          title: Expiry
          type: string
          description: Human-readable expiry duration
          example: 1 week
        expires_at:
          title: Expires At
          type: string
          format: date-time
          description: ISO 8601 timestamp when the link expires
          example: '2023-04-10T12:00:00Z'
      required:
        - link
        - expiry
        - expires_at
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: apikey

````