---
title: "Get verified contract at an address on all chains"
method: GET
path: "/v2/contract/all-chains/{address}"
tags: ["Contract Lookup"]
---

# Get verified contract at an address on all chains

`GET /v2/contract/all-chains/{address}`

Returns all verified deployments at an address on all Sourcify chains (including deprecated ones).

Success returns an array of VerifiedContractMinimal objects under `results` field.

If not verified on any chain, the `results` array will be empty.

## Path parameters

- `address` string, required

## Response `200`

Returns all verified deployments at an address on all Sourcify chains

- object
  - `results` object[]
    - `match` 'match' | 'exact_match' | 'null', nullable, required — Verification status for the overall contract match. `null` when the contract is a Tempo-native contract that exposes source without Sourcify bytecode verification.
    - `creationMatch` 'match' | 'exact_match' | 'null', nullable, required — Verification status for creation bytecode matching. `null` when the contract is a Tempo-native contract that exposes source without Sourcify bytecode verification.
    - `runtimeMatch` 'match' | 'exact_match' | 'null', nullable, required — Verification status for runtime bytecode matching. `null` when the contract is a Tempo-native contract that exposes source without Sourcify bytecode verification.
    - `chainId` string, required
    - `address` string, required — Contract Address in hex string. Can be checksummed or not (i.e. can contain capital letters)
    - `verifiedAt` string, date-time, nullable — Timestamp when the contract was verified by Sourcify-compatible bytecode matching. `null` for Tempo-native contracts that only expose curated source.
    - `matchId` string, nullable — Identifier of the verified contract match. `null` for Tempo-native contracts that only expose curated source.

## Other responses

- `400` — Bad request from the client
- `404` — No verified contract found on any chain for the provided address
- `429` — You are sending too many requests to the server
- `500`

## Changes

- **2026-07-17** `a76585f33723` — 5 breaking
  - the response property `results/items/creationMatch` became nullable for the status `200`
  - the response property `results/items/match` became nullable for the status `200`
  - the response property `results/items/matchId` became nullable for the status `200`
  - the response property `results/items/runtimeMatch` became nullable for the status `200`
  - …1 more
- **2026-03-09** `eef63cd83966` — 1 warning, 1 info
  - changed the pattern of the `path` request parameter `address` from `(\b0x[a-fA-F0-9]{40}\b)` to `^0x[a-fA-F0-9]{40}$`
  - for the `path` request parameter `address`, the minLength was decreased from `42` to `0`
- **2025-12-17** `f02ddb386819` — 1 breaking, 2 warning
  - for the `path` request parameter `address`, the minLength was increased from `0` to `42`
  - for the `path` request parameter `address`, the maxLength was set to `42`
  - changed the pattern of the `path` request parameter `address` from `^0x[a-fA-F0-9]{40}$` to `(\b0x[a-fA-F0-9]{40}\b)`

[Change history](https://skmtc.dev/tempoxyz/apis/contract-verification-api/changes/v2/contract/all-chains/:address/get.md)

---

[API](https://skmtc.dev/tempoxyz/apis/contract-verification-api.md) · [All operations](https://skmtc.dev/tempoxyz/apis/contract-verification-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/tempoxyz/contract-verification-api/revisions/a76585f33723/schema)
