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

# List Outbound Numbers

> Retrieves a list of all outbound phone numbers configured for your account, along with their associated settings.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="outbound_numbers" type="array">
  An array of outbound phone number objects.
</ResponseField>

<ResponseExample>
  ```json Response
  {
      "outbound_numbers": [
          {
              "created_at": "2023-11-27T17:21:38.33359+00:00",
              "phone_number": "+18005551234",
              "last_initiated": "2023-12-08T21:47:49.808+00:00"
          },
          //...
      ]
  }
  ```
</ResponseExample>
