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

# userToMultiSigSigners | Hyperliquid Info API

> Hyperliquid userToMultiSigSigners: fetch the authorized signers for a multi-sig user.

<CardGroup cols={2}>
  <Card title="Credit Cost"> 1 per call</Card>
  <Card title="Processing"> Realtime</Card>
</CardGroup>

The Hyperliquid info endpoint with `type: "userToMultiSigSigners"` is used to fetch the authorized signers for a multi-sig user.

<Tip>
  Estimate your monthly cost for this API using the [Pricing Calculator](/docs/pricing-calculator?endpoint=%2Fapi-reference%2Fhyperliquid-info%2Fuser-to-multi-sig-signers).
</Tip>

<Info>
  * Wire-equal to `POST api.hyperliquid.xyz/info` with `{"type": "userToMultiSigSigners", "user": "..."}`.
  * Returns `null` when the queried wallet is not a multi-sig account.
  * A multi-sig account has at most 10 authorized signers; `threshold` is the minimum number that must sign to authorize an action.
</Info>

Returns the authorized-signer configuration for a wallet that has been converted to a multi-sig account: the set of addresses allowed to sign for it, and the minimum number of signatures (`threshold`) required to authorize an action. Returns `null` for ordinary (non-multi-sig) wallets.

User-keyed.

## Endpoint

```
POST https://hypercore.goldrushdata.com/info
Authorization: Bearer <GOLDRUSH_API_KEY>
Content-Type: application/json
```

## Request

<ParamField body="type" type="string" required>
  Always `"userToMultiSigSigners"`.
</ParamField>

<ParamField body="user" type="string" required>
  The wallet address (lowercase 0x-prefixed hex).
</ParamField>

### Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://hypercore.goldrushdata.com/info \
    -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "type": "userToMultiSigSigners",
      "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036"
    }'
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch("https://hypercore.goldrushdata.com/info", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.GOLDRUSH_API_KEY}`,
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      type: "userToMultiSigSigners",
      user: "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036",
    }),
  });

  const signers = await response.json();
  ```

  ```python Python theme={null}
  import os, requests

  response = requests.post(
      "https://hypercore.goldrushdata.com/info",
      headers={"Authorization": f"Bearer {os.environ['GOLDRUSH_API_KEY']}"},
      json={
          "type": "userToMultiSigSigners",
          "user": "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036",
      },
  )

  signers = response.json()
  ```
</CodeGroup>

## Response

An object describing the multi-sig signer set, or `null` when the queried wallet is not a multi-sig account.

```json theme={null}
{
  "authorizedUsers": [
    "0x2ba553d9f990a3b66b03b2dc0d030dfc1c061036",
    "0x399965e15d4e61ec3529cc98b7f7ebb93b733336"
  ],
  "threshold": 2
}
```

### Field descriptions

<ResponseField name="authorizedUsers" type="array<string>">Addresses authorized to sign for the multi-sig account.</ResponseField>
<ResponseField name="threshold" type="int">Minimum number of authorized signatures required to execute an action.</ResponseField>

*Last reviewed: 2026-07-24*
