> ## Documentation Index
> Fetch the complete documentation index at: https://hedera-0c6e0218-docs--429.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Add input files



## OpenAPI

````yaml smart-contract-verification-api.yaml post /session/input-files
openapi: 3.0.0
info:
  title: Sourcify API
  version: 1.0.0
servers:
  - description: The current REST API server
    url: ''
  - description: The production REST API server
    url: https://server-verify.hashscan.io
  - description: The staging REST API server
    url: https://server-sourcify.hedera-devops.com
  - description: Local development server address on default port 5555
    url: http://localhost:5555
security: []
tags:
  - name: Stateless Verification
    description: Main verification endpoints
paths:
  /session/input-files:
    post:
      tags:
        - Session Verification
      summary: Add input files
      parameters:
        - name: url
          in: query
          schema:
            type: string
            format: uri
          description: Remote file URL
          required: false
        - name: dryrun
          in: query
          schema:
            type: boolean
            default: false
          description: >-
            Dry-run flag. When present and set to true, a successful
            verification result will not be stored in the repository.
          required: false
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                files:
                  type: object
          multipart/form-data:
            schema:
              type: object
              properties:
                files:
                  description: This field is required
                  oneOf:
                    - type: string
                    - type: array
                      items:
                        type: string
                    - type: string
                      format: binary
                    - type: array
                      items:
                        type: string
                        format: binary
      responses:
        '200':
          description: >-
            Response is sent when the upload is successful under different
            conditions.
          content:
            application/json:
              schema:
                type: object
                properties:
                  contracts:
                    type: array
                    items:
                      type: object
                      properties:
                        compiledPath:
                          type: string
                        name:
                          type: string
                        compilerVersion:
                          type: string
                        files:
                          type: object
                          properties:
                            found:
                              type: array
                              items:
                                type: string
                            missing:
                              type: array
                              items:
                                type: string
                        verificationId:
                          type: string
                        status:
                          type: string
                          enum:
                            - perfect
                            - partial
                            - error
                  unused:
                    type: array
                    items:
                      type: string
        '413':
          description: Payload Too Large
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string

````