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

# Get Whitelisted Addresses

> List all wallet addresses whitelisted on your account

Returns every external address you have whitelisted, across all networks.

### Query parameters

<ParamField query="includeNetwork" type="boolean" default="false">
  When `true`, embeds a network summary (`id`, `name`, `short_name`) in each entry.
</ParamField>

### Response (decrypted `data`)

<ResponseField name="data" type="object[]">
  Array of whitelisted address objects, with the same shape as [Whitelist Address](/api-reference/whitelist-address).
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cngn.co/v1/api/whitelisted?includeNetwork=true" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```typescript TypeScript theme={null}
  const res = await fetch(
    "https://api.cngn.co/v1/api/whitelisted?includeNetwork=true",
    { headers: { Authorization: `Bearer ${API_KEY}` } }
  );
  ```

  ```python Python theme={null}
  res = requests.get(
      "https://api.cngn.co/v1/api/whitelisted",
      params={"includeNetwork": "true"},
      headers={"Authorization": f"Bearer {API_KEY}"},
  )
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - Success (data shown decrypted) theme={null}
  {
    "status": 200,
    "message": "Whitelisted addresses fetched successfully",
    "data": [
      {
        "id": "7a8b9c0d-1e2f-4a3b-9c4d-5e6f7a8b9c0d",
        "networkId": "9b2e6a1f-3c4d-4e5f-8a7b-1c2d3e4f5a6b",
        "publicKey": "0x8Ba1f109551bD432803012645Ac136ddd64DBA72",
        "internalPublicKey": "0x3cD4e5F6a7B8c9D0e1F2a3B4c5D6e7F8a9B0c1D2",
        "network": {
          "id": "9b2e6a1f-3c4d-4e5f-8a7b-1c2d3e4f5a6b",
          "name": "Base",
          "short_name": "BASE"
        },
        "created_at": "2026-07-22T10:15:00.000Z",
        "updated_at": "2026-07-22T10:15:00.000Z"
      }
    ]
  }
  ```
</ResponseExample>
