# Linked Signers
## Rate limits
* 1200 requests/min or 200 requests/10secs per IP address. (**weight = 2**)
{% hint style="info" %}
See more details in [API Rate limits](https://docs.nado.xyz/developer-resources/api/rate-limits)
{% endhint %}
## Request
{% tabs %}
{% tab title="List linked signers" %}
Query linked signers ordered by creation time.
`POST [ARCHIVE_ENDPOINT]`
**Body**
```json
{
"linked_signers": {
"start_idx": 0,
"limit": 100
}
}
```
{% endtab %}
{% endtabs %}
## Request Parameters
| Parameter | Type | Required | Description |
|---|
| start_idx | number / string | No | Starting index for pagination. Defaults to 0. |
| limit | number | No | Max number of linked signers to return. Defaults to 100. Max of 500. |
## Response
```json
{
"linked_signers": [
{
"subaccount": "0x79cc76364b5fb263a25bd52930e3d9788fcfeea864656661756c740000000000",
"signer": "0x1234567890123456789012345678901234567890",
"created_at": "1683315718"
}
]
}
```
## Response Fields
### Linked Signers
| Field name | Description |
|---|
| subaccount | Hex string of the subaccount |
| signer | Hex string of the linked signer address |
| created_at | Unix epoch time in seconds when the signer was linked |