---
title: "Get account contracts"
method: GET
path: "/v1/accounts/{address}/contracts"
tags: ["Accounts"]
---

# Get account contracts

`GET /v1/accounts/{address}/contracts`

Returns a list of contracts created by (or related to) the specified account.

## Path parameters

- `address` string, required

## Query parameters

- `sort` SortParameter
  - `asc` string, nullable — **Ascending** sort mode (optional, i.e. `sort.asc=id` is the same as `sort=id`). \ Specify a field name to sort by. Example: `?sort=balance`.
  - `desc` string, nullable — **Descending** sort mode. \ Specify a field name to sort by descending. Example: `?sort.desc=id`.
- `offset` OffsetParameter
  - `el` integer, nullable — **Elements** offset mode (optional, i.e. `offset.el=123` is the same as `offset=123`). \ Skips specified number of elements. Example: `?offset=100`.
  - `pg` integer, nullable — **Page** offset mode. \ Skips `page * limit` elements. This is a classic pagination. Example: `?offset.pg=1`.
  - `cr` integer, nullable — **Cursor** offset mode. \ Skips all elements with the `cursor` before (including) the specified value. Cursor is a field used for sorting, e.g. `id`. Avoid using this offset mode with non-unique or non-sequential cursors such as `amount`, `balance`, etc. Example: `?offset.cr=45837`.
- `limit` integer

## Response `200`

- RelatedContract[]
  - `kind` string, required — Kind of the contract (`delegator_contract` or `smart_contract`), where `delegator_contract` - manager.tz smart contract for delegation purpose only
  - `alias` string, nullable — Name of the project behind the contract or contract description
  - `address` string, required — Public key hash of the contract
  - `balance` integer — Contract balance (micro tez)
  - `delegate` DelegateInfo
    - `alias` string, nullable — Name of the baking service
    - `address` string, required — Public key hash of the delegate (baker)
    - `active` boolean — Delegation status (`true` - active, `false` - deactivated)
  - `creationLevel` integer — Height of the block where the contract was created
  - `creationTime` string, date-time, nullable — Datetime of the block where the contract was created (ISO 8601, e.g. `2020-02-20T02:40:57Z`)

---

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