---
title: "List deployed contracts"
method: GET
path: "/v1/chains/{chainId}/contracts/{address}/deployments"
tags: ["EVM Transactions"]
---

# List deployed contracts

`GET /v1/chains/{chainId}/contracts/{address}/deployments`

Lists all contracts deployed by the given address.

## Path parameters

- `chainId` string, required
- `address` string, required

## Query parameters

- `pageToken` string
- `pageSize` integer

## Response `200`

Successful response

- ListContractsResponse
  - `nextPageToken` string — A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
  - `contracts` union[], required
    - union
      - Erc721Contract
        - `name` string — The contract name.
        - `description` string
        - `officialSite` string
        - `email` string
        - `logoAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `bannerAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `color` string
        - `resourceLinks` ResourceLink[]
          - `type` 'Blog' | 'CoinGecko' | 'CoinMarketCap' | 'Discord' | 'Documentation' | 'Facebook' | 'Github' | 'Instagram' | 'LinkedIn' | 'Medium' | 'Reddit' | 'Support' | 'Telegram' | 'TikTok' | 'Twitter' | 'Website' | 'Whitepaper' | 'Youtube', required
          - `url` string, required
        - `tags` string[]
        - `address` string, required — A wallet or contract address in mixed-case checksum encoding.
        - `deploymentDetails` ContractDeploymentDetails
          - `txHash` string, required
          - `deployerAddress` string, required — The address that initiated the transaction which deployed this contract.
          - `deployerContractAddress` string — The contract address which deployed this contract via smart contract. This field is only populated when the contract was deployed as part of smart contract execution.
        - `ercType` 'ERC-721', required
        - `symbol` string — The contract symbol.
      - Erc1155Contract
        - `name` string — The contract name.
        - `description` string
        - `officialSite` string
        - `email` string
        - `logoAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `bannerAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `color` string
        - `resourceLinks` ResourceLink[]
          - `type` 'Blog' | 'CoinGecko' | 'CoinMarketCap' | 'Discord' | 'Documentation' | 'Facebook' | 'Github' | 'Instagram' | 'LinkedIn' | 'Medium' | 'Reddit' | 'Support' | 'Telegram' | 'TikTok' | 'Twitter' | 'Website' | 'Whitepaper' | 'Youtube', required
          - `url` string, required
        - `tags` string[]
        - `address` string, required — A wallet or contract address in mixed-case checksum encoding.
        - `deploymentDetails` ContractDeploymentDetails
          - `txHash` string, required
          - `deployerAddress` string, required — The address that initiated the transaction which deployed this contract.
          - `deployerContractAddress` string — The contract address which deployed this contract via smart contract. This field is only populated when the contract was deployed as part of smart contract execution.
        - `ercType` 'ERC-1155', required
        - `symbol` string — The contract symbol.
        - `pricingProviders` PricingProviders
          - `coingeckoCoinId` string
      - Erc20Contract
        - `name` string — The contract name.
        - `description` string
        - `officialSite` string
        - `email` string
        - `logoAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `bannerAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `color` string
        - `resourceLinks` ResourceLink[]
          - `type` 'Blog' | 'CoinGecko' | 'CoinMarketCap' | 'Discord' | 'Documentation' | 'Facebook' | 'Github' | 'Instagram' | 'LinkedIn' | 'Medium' | 'Reddit' | 'Support' | 'Telegram' | 'TikTok' | 'Twitter' | 'Website' | 'Whitepaper' | 'Youtube', required
          - `url` string, required
        - `tags` string[]
        - `address` string, required — A wallet or contract address in mixed-case checksum encoding.
        - `deploymentDetails` ContractDeploymentDetails
          - `txHash` string, required
          - `deployerAddress` string, required — The address that initiated the transaction which deployed this contract.
          - `deployerContractAddress` string — The contract address which deployed this contract via smart contract. This field is only populated when the contract was deployed as part of smart contract execution.
        - `ercType` 'ERC-20', required
        - `symbol` string — The contract symbol.
        - `decimals` number, required — The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
        - `pricingProviders` PricingProviders
          - `coingeckoCoinId` string
      - UnknownContract
        - `name` string — The contract name.
        - `description` string
        - `officialSite` string
        - `email` string
        - `logoAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `bannerAsset` ImageAsset
          - `assetId` string
          - `imageUri` string — OUTPUT ONLY
        - `color` string
        - `resourceLinks` ResourceLink[]
          - `type` 'Blog' | 'CoinGecko' | 'CoinMarketCap' | 'Discord' | 'Documentation' | 'Facebook' | 'Github' | 'Instagram' | 'LinkedIn' | 'Medium' | 'Reddit' | 'Support' | 'Telegram' | 'TikTok' | 'Twitter' | 'Website' | 'Whitepaper' | 'Youtube', required
          - `url` string, required
        - `tags` string[]
        - `address` string, required — A wallet or contract address in mixed-case checksum encoding.
        - `deploymentDetails` ContractDeploymentDetails
          - `txHash` string, required
          - `deployerAddress` string, required — The address that initiated the transaction which deployed this contract.
          - `deployerContractAddress` string — The contract address which deployed this contract via smart contract. This field is only populated when the contract was deployed as part of smart contract execution.
        - `ercType` 'UNKNOWN', required

## Other responses

- `400` — Bad requests generally mean the client has passed invalid or malformed parameters. Error messages in the response could help in evaluating the error.
- `401` — When a client attempts to access resources that require authorization credentials but the client lacks proper authentication in the request, the server responds with 401.
- `403` — When a client attempts to access resources with valid credentials but doesn't have the privilege to perform that action, the server responds with 403.
- `404` — The error is mostly returned when the client requests with either mistyped URL, or the passed resource is moved or deleted, or the resource doesn't exist.
- `429` — This error is returned when the client has sent too many, and has hit the rate limit.
- `500` — The error is a generic server side error that is returned for any uncaught and unexpected issues on the server side. This should be very rare, and you may reach out to us if the problem persists for a longer duration.
- `502` — This is an internal error indicating invalid response received by the client-facing proxy or gateway from the upstream server.
- `503` — The error is returned for certain routes on a particular Subnet. This indicates an internal problem with our Subnet node, and may not necessarily mean the Subnet is down or affected.

---

[API](https://skmtc.net/avax/apis/data-api.md) · [All operations](https://skmtc.net/avax/apis/data-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/avax/data-api/versions/745a94fa47f5/schema)
