> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# multisig/wallets | TON v3

> The multisig/wallets endpoint retrieves multisig wallet contracts from the TON blockchain. multisig/wallets on TON v3 via Chainstack.

# Multisig Wallets

The `multisig/wallets` endpoint retrieves multisig wallet contracts from the TON blockchain. Multisig wallets require multiple signatures to execute transactions, providing enhanced security for shared funds.

<Note>
  **TON billing: full (1 RU)**

  This method is always billed as full. See [Request units — TON method scope](/docs/request-units#ton-method-scope).
</Note>

## Parameters

* `address` (string, optional) — Filter by multisig wallet address.
* `proposer_address` (string, optional) — Filter by proposer address.
* `limit` (integer, optional) — Maximum number of wallets to return. Default: `10`.
* `offset` (integer, optional) — Number of wallets to skip for pagination. Default: `0`.

## Response

* `multisig_wallets` (array) — Array of multisig wallet objects:
  * `address` (string) — Multisig wallet address.
  * `seqno` (integer) — Current sequence number.
  * `threshold` (integer) — Required number of signatures.
  * `signers` (array) — List of signer addresses.
  * `proposers` (array) — List of proposer addresses.
  * `orders_count` (integer) — Number of pending orders.

* `address_book` (object) — Address book mapping.

## Use case

The `multisig/wallets` endpoint is essential for managing multisig wallets:

1. Treasury management interfaces displaying wallet configuration.
2. DAO tools showing governance wallet status.
3. Security audits reviewing multisig setup and signers.
4. Wallet applications supporting multisig functionality.
5. Organization tools managing shared funds.

Here's an example of getting multisig wallets:

<CodeGroup>
  ```shell shell theme={"system"}
  curl -X GET \
    'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/multisig/wallets?limit=5' \
    -H 'accept: application/json'
  ```
</CodeGroup>

<Tip>
  Use the [multisig/orders](/reference/ton-multisig-orders-v3) endpoint to see pending transactions that require signatures for these wallets.
</Tip>


## OpenAPI

````yaml openapi/ton_node_api/v3/getMultisigWallets.json GET /multisig/wallets
openapi: 3.0.0
info:
  title: TON API
  version: 3.0.0
  description: API for interacting with The Open Network (TON) blockchain
servers:
  - url: >-
      https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3
security: []
paths:
  /multisig/wallets:
    get:
      tags:
        - Multisig
      summary: Get Multisig Wallets
      description: Get multisig wallet contracts and their configuration
      operationId: getMultisigWallets
      parameters:
        - name: address
          in: query
          description: Multisig wallet address
          schema:
            type: string
        - name: proposer_address
          in: query
          description: Filter by proposer address
          schema:
            type: string
        - name: limit
          in: query
          description: Maximum number of wallets to return
          schema:
            type: integer
            default: 10
        - name: offset
          in: query
          description: Number of wallets to skip
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  multisig_wallets:
                    type: array
                    items:
                      type: object
                      properties:
                        address:
                          type: string
                          description: Multisig wallet address
                        seqno:
                          type: integer
                          description: Current sequence number
                        threshold:
                          type: integer
                          description: Required number of signatures
                        signers:
                          type: array
                          items:
                            type: string
                          description: List of signer addresses
                        proposers:
                          type: array
                          items:
                            type: string
                          description: List of proposer addresses
                        orders_count:
                          type: integer
                          description: Number of pending orders
                  address_book:
                    type: object
                    description: Address book mapping

````