> ## 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 targets

> Retrieve a paginated list of buyers, ICPs, personas, and lists in your workspace.

Retrieves a paginated list of targets. Filter by type to narrow results to ICPs, personas, contacts, or lists.

## Request

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

### Query parameters

<ParamField query="type" type="string">
  Filter by target type. One of `icp`, `persona`, `contact`, or `list`.
</ParamField>

<ParamField query="limit" default="20" type="integer">
  Number of targets to return per page. Max `100`.
</ParamField>

<ParamField query="cursor" type="string">
  Pagination cursor from a previous response.
</ParamField>

## Response

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

<ResponseField name="next_cursor" type="string">
  Cursor for the next page, or `null` if there are no more results.
</ResponseField>

## Example

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