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

# List API Keys

> List all API keys managed by the current management key.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.arouter.ai/api/v1/keys?page_size=20" \
    -H "Authorization: Bearer lr_mgmt_xxxx"
  ```

  ```go Go theme={null}
  keys, err := client.ListKeys(ctx, &arouter.ListKeysOptions{
      PageSize: 20,
  })
  ```

  ```typescript Node.js theme={null}
  const keys = await router.listKeys({ page_size: 20 });
  ```
</RequestExample>
