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

# List destinations

> Retrieve every configured destination where 1eye delivers matched signals and enriched contacts.

Retrieves every destination configured in your workspace.

## Request

```http theme={null}
GET /v1/destinations
```

## Response

<ResponseField name="data" type="array">
  Array of destination objects.

  <Expandable title="Destination">
    <ResponseField name="id" type="string">
      Unique destination identifier.
    </ResponseField>

    <ResponseField name="type" type="string">
      Destination type, such as `webhook`, `salesforce`, or `hubspot`.
    </ResponseField>

    <ResponseField name="name" type="string">
      Human-readable name.
    </ResponseField>

    <ResponseField name="status" type="string">
      Current status.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

```bash cURL theme={null}
curl https://api.1eye.com/v1/destinations \
  -H "Authorization: Bearer YOUR_API_KEY"
```
