> ## 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 all contract addresses verified on a chain (full or partial match)

> Returns all verified contracts from the repository for the desired chain. Searches for full and partial matches.



## OpenAPI

````yaml smart-contract-verification-api.yaml get /files/contracts/{chain}
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:
  /files/contracts/{chain}:
    get:
      tags:
        - Repository
      summary: Get all contract addresses verified on a chain (full or partial match)
      description: >-
        Returns all verified contracts from the repository for the desired
        chain. Searches for full and partial matches.
      parameters:
        - name: chain
          in: path
          required: true
          schema:
            type: string
            format: sourcify-chainId
      responses:
        '200':
          description: >-
            Chain is available as a full match or partial match in the
            repository
          content:
            application/json:
              schema:
                type: object
                properties:
                  full:
                    type: array
                    items:
                      type: string
                  partial:
                    type: array
                    items:
                      type: string
        '404':
          description: >-
            Chain is not available as both full match or partial match in the
            repository
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string

````