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

# Get contract signed files

> Returns every signed file attached to the contract’s signature, each with a short-lived pre-signed download URL and file metadata. Clients pick the file(s) they want to download. URLs expire after 30 seconds; re-call the endpoint to obtain fresh ones.



## OpenAPI

````yaml /openapi-2025-01-29.alpha.json get /contracts/{id}/signed-files
openapi: 3.0.0
info:
  title: Tomorro API
  description: >
    The Tomorro Public API enables you to programmatically manage contracts,
    members, and counterparties. Build powerful integrations that automate your
    contract management workflows.


    ## API Version: 2025-01-29.alpha


    This documentation is for API version `2025-01-29.alpha`.


    ### Using this version

    ```

    curl -X GET https://api.tomorro.com/members \
      -H "x-api-key: YOUR_API_KEY" \
      -H "tomorro-version: 2025-01-29.alpha"
    ```
  version: 2025-01-29.alpha
  contact: {}
servers:
  - url: https://api.tomorro.com/v2
    description: Production
  - url: https://api.demo.tomorro.com/v2
    description: Demo
  - url: http://localhost:3015
    description: Local Development
security: []
tags: []
paths:
  /contracts/{id}/signed-files:
    get:
      tags:
        - Contracts
      summary: Get contract signed files
      description: >-
        Returns every signed file attached to the contract’s signature, each
        with a short-lived pre-signed download URL and file metadata. Clients
        pick the file(s) they want to download. URLs expire after 30 seconds;
        re-call the endpoint to obtain fresh ones.
      operationId: ContractController_getSignedFiles
      parameters:
        - name: id
          required: true
          in: path
          description: The unique identifier (UUID) of the contract
          schema:
            example: 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Signed files with download URLs
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ContractSignedFileResponseDto'
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Insufficient permissions
        '404':
          description: Contract not found
        '409':
          description: The contract is not signed yet, or its signed PDF is not available.
        '429':
          description: Too Many Requests - Rate limit exceeded
      security:
        - X-API-KEY: []
components:
  schemas:
    ContractSignedFileResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier (UUID) of the signed file.
          example: 550e8400-e29b-41d4-a716-446655440000
        filename:
          type: string
          description: Filename of the signed file, normalized to end with `.pdf`.
          example: NDA - Acme Corp - signed.pdf
        contentType:
          type: string
          description: MIME content type of the signed file.
          example: application/pdf
        downloadUrl:
          type: string
          description: Short-lived pre-signed URL to download the signed PDF.
          example: https://s3.amazonaws.com/bucket/path?X-Amz-Signature=...
        expiresAt:
          format: date-time
          type: string
          description: >-
            Date at which `downloadUrl` expires. Re-call the endpoint to obtain
            a fresh URL.
          example: '2026-04-24T10:45:00.000Z'
      required:
        - id
        - filename
        - contentType
        - downloadUrl
        - expiresAt
  securitySchemes:
    X-API-KEY:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Get your key at
        https://app.tomorro.com/settings/integrations?integration=api-key

````