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

# Download Token Transparency Report

> Downloads the complete token transparency framework report as a PDF file.



## OpenAPI

````yaml /openapi.json get /v1/transparency/{id}/download
openapi: 3.0.0
info:
  title: Blockworks API
  description: ''
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.blockworks.com
security:
  - x-api-key: []
tags: []
paths:
  /v1/transparency/{id}/download:
    get:
      tags:
        - transparency
      summary: Download Token Transparency Report
      description: >-
        Downloads the complete token transparency framework report as a PDF
        file.
      operationId: TransparencyController_download_v1
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: PDF file download
          content:
            application/pdf:
              schema:
                type: string
                format: binary
          headers:
            Content-Disposition:
              description: Attachment header with filename
              schema:
                type: string
                example: attachment; filename="project-transparency-report.pdf"
        '400':
          description: Bad Request
        '404':
          description: Report not found or PDF not available
      security:
        - x-api-key: []
components:
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````