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

# Get deliverable

> Fetch detailed information about a file by its ID. This endpoint requires the `x-store-id` in the headers to verify ownership. Successfully retrieves information such as file title, description, URL, and creation date. Useful for accessing and managing deliverables associated with specific products or variants.



## OpenAPI

````yaml get /deliverables/{id}
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security: []
paths:
  /deliverables/{id}:
    get:
      tags:
        - Deliverables
      summary: Get deliverable
      description: >-
        Fetch detailed information about a file by its ID. This endpoint
        requires the `x-store-id` in the headers to verify ownership.
        Successfully retrieves information such as file title, description, URL,
        and creation date. Useful for accessing and managing deliverables
        associated with specific products or variants.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: File details retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileDetailResponse'
        '401':
          description: Unauthorized
        '404':
          description: Not Found
components:
  schemas:
    FileDetailResponse:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            type:
              type: string
            title:
              type: string
            description:
              type: string
            url:
              type: string
            button_label:
              type: string
            created_at:
              type: string
              format: date-time

````