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

# Download Anonymized File

> Get a presigned URL to download a single anonymized file from a completed run



## OpenAPI

````yaml GET /api/dataframer/anonymization-runs/{run_id}/files/{file_id}/download/
openapi: 3.0.0
info:
  title: DataFramer API
  version: 0.1.0
  description: ''
  termsOfService: https://www.aimon.ai/docs/privacy-policy.pdf
  contact:
    name: DataFramer Support
    email: info@dataframer.ai
  license:
    name: Proprietary
  x-logo:
    url: https://dataframer.ai/logo.png
    altText: DataFramer AI
  x-stainless:
    package-name: aimon-dataframer
    namespace:
      - aimon
      - dataframer
servers:
  - url: https://df-api.dataframer.ai
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Seed Datasets
    description: Manage seed datasets for generation
  - name: Specs
    description: Data specifications for sample generation
  - name: Runs
    description: Generation runs and results
  - name: Evaluations
    description: Evaluate generated sample quality
  - name: Red Teaming
    description: Security testing and adversarial prompts
  - name: Spec Creation
    description: Create specs from datasets or from scratch (seedless)
  - name: Generation
    description: Synthetic data generation
  - name: API Keys
    description: API key management and rotation
  - name: Health
    description: Health check endpoints
  - name: Models
    description: Available AI models
externalDocs:
  description: Complete API Guide
  url: https://docs.dataframer.ai/dataframer
paths:
  /api/dataframer/anonymization-runs/{run_id}/files/{file_id}/download/:
    get:
      tags:
        - DataFramer - Data Anonymization
      summary: Download anonymized file
      description: >-
        Get a presigned download URL for a single anonymized file. The run must
        be in `SUCCEEDED` status. The presigned URL expires after 1 hour.
      operationId: api_dataframer_anonymization_runs_file_download
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
          description: UUID of the completed anonymization run.
        - name: file_id
          in: path
          required: true
          schema:
            type: string
          description: >-
            ID of the file to retrieve. Matches `id` from `anonymized_files[]`
            in the run response.
      responses:
        '200':
          description: Anonymized file content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnonymizationRunFileDownload'
        '401':
          description: Unauthorized
        '404':
          description: Anonymization run or file not found
        '409':
          description: Run is not in SUCCEEDED status
      security:
        - BearerAuth: []
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Dataframer from 'dataframer';


            const client = new Dataframer({
              apiKey: process.env['DATAFRAMER_API_KEY'], // This is the default and can be omitted
            });


            const response = await
            client.dataframer.anonymizationRuns.files.download('file_id', {
              run_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
            });


            console.log(response.content_type);
        - lang: Python
          source: |-
            import os
            from dataframer import Dataframer

            client = Dataframer(
                api_key=os.environ.get("DATAFRAMER_API_KEY"),  # This is the default and can be omitted
            )
            response = client.dataframer.anonymization_runs.files.download(
                file_id="file_id",
                run_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
            )
            print(response.content_type)
components:
  schemas:
    AnonymizationRunFileDownload:
      type: object
      description: Presigned download URL for a single anonymized file.
      properties:
        download_url:
          type: string
          format: uri
          description: >-
            Presigned S3 URL to download the anonymized file. Expires after 1
            hour.
        file_name:
          type: string
          description: Original file name.
        content_type:
          type: string
          description: MIME type of the file (e.g. `text/plain`, `application/json`).
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API Key authentication. Format: "Bearer YOUR_API_KEY"'

````