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

# Get a specific file from the repository with the file path (static serving)

> Retrieve statically served files over the server.



## OpenAPI

````yaml smart-contract-verification-api.yaml get /repository/contracts/{matchType}/{chain}/{address}/{filePath}
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:
  /repository/contracts/{matchType}/{chain}/{address}/{filePath}:
    get:
      tags:
        - Repository
      summary: >-
        Get a specific file from the repository with the file path (static
        serving)
      description: Retrieve statically served files over the server.
      parameters:
        - name: matchType
          description: Match type - use `full_match` or `partial_match`
          in: path
          required: true
          schema:
            type: string
            format: match-type
        - name: chain
          in: path
          required: true
          schema:
            type: string
            format: sourcify-chainId
        - name: address
          in: path
          required: true
          schema:
            type: string
            format: address
        - name: filePath
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The file is found at the path
          content:
            text/plain: {}
        '404':
          description: The file is not found at the path
          content:
            text/plain: {}

````