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

# Verify from Etherscan



## OpenAPI

````yaml smart-contract-verification-api.yaml post /session/verify/etherscan
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/verify/etherscan:
    post:
      tags:
        - Session Verification
      summary: Verify from Etherscan
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                address:
                  type: string
                  format: address
                chainId:
                  type: string
                  format: supported-chainId
                apiKey:
                  type: string
              required:
                - address
                - chainId
          multipart/form-data:
            schema:
              type: object
              properties:
                address:
                  type: string
                  format: address
                chain:
                  type: string
                  format: supported-chainId
                apiKey:
                  type: string
              required:
                - address
                - chain
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  contracts:
                    type: array
                    items:
                      type: object
                      properties:
                        verificationId:
                          type: string
                        compiledPath:
                          type: string
                        name:
                          type: string
                        compilerVersion:
                          type: string
                        address:
                          type: string
                        chainId:
                          type: string
                        files:
                          type: object
                          properties:
                            found:
                              type: array
                              items:
                                type: string
                            missing:
                              type: array
                              items:
                                type: string
                        status:
                          type: string
                        storageTimestamp:
                          type: string
                          format: date-time
                  unused:
                    type: array
                    items:
                      type: string
        '429':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    oneOf:
                      - {}
                      - {}

````