> ## 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.

# List deliverables

> Retrieve a list of files (deliverables) associated with a store, filtered optionally by product or variant ID. The endpoint supports pagination and requires a valid `x-store-id` in the headers for authentication.



## OpenAPI

````yaml get /deliverables
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:
    get:
      tags:
        - Deliverables
      summary: List deliverables
      description: >-
        Retrieve a list of files (deliverables) associated with a store,
        filtered optionally by product or variant ID. The endpoint supports
        pagination and requires a valid `x-store-id` in the headers for
        authentication.
      parameters:
        - name: product_id
          in: query
          schema:
            type: string
        - name: variant_id
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
      responses:
        '200':
          description: Files list retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileListResponse'
        '401':
          description: Unauthorized
components:
  schemas:
    FileListResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            total:
              type: integer
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              product_id:
                type: string
              variant_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

````