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

# Download an award image

> Returns an award image for download. The response sets `Content-Disposition: attachment` so the file is saved by the browser rather than rendered inline.



## OpenAPI

````yaml https://api.tightknit.ai/doc-mintlify get /public/award_image/{file_id}/download
openapi: 3.1.0
info:
  version: 0.0.0
  title: Tightknit OpenAPI
servers:
  - url: https://api.tightknit.ai
    description: Production server
security:
  - Bearer: []
paths:
  /public/award_image/{file_id}/download:
    get:
      tags:
        - Public
      summary: Download an award image
      description: >-
        Returns an award image for download. The response sets
        `Content-Disposition: attachment` so the file is saved by the browser
        rather than rendered inline.
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: file_id
          in: path
      responses:
        '200':
          description: The award image bytes (force-download).
          content:
            image/*:
              schema:
                type: string
                format: binary
        '404':
          description: >-
            No award image with that file id (or the file is no longer
            downloadable).
        '500':
          description: Internal server error or upstream storage fetch failure.
      security: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````

## Related topics

- [Awards](/gamification/awards.md)
- [Triggered when an award is given](/api-reference/webhooks/triggered-when-an-award-is-given.md)
- [Branding Guide](/branding.md)
- [Automated Onboarding Journeys](/guides/set-up-automated-onboarding-journeys.md)
- [Groups](/community/groups.md)
