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

# Create a target

> Create a new buyer, ICP, persona, or list in your 1eye workspace.

Creates a new target in your workspace.

## Request

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

### Body parameters

<ParamField body="type" type="string" required>
  Target type. One of `icp`, `persona`, `contact`, or `list`.
</ParamField>

<ParamField body="name" type="string" required>
  Human-readable name for the target.
</ParamField>

<ParamField body="attributes" type="object">
  Type-specific attributes. See the guides for each target type.
</ParamField>

## Response

Returns the created target object.

## Example

```bash cURL theme={null}
curl https://api.1eye.com/v1/targets \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "icp",
    "name": "Enterprise SaaS",
    "attributes": { "industry": "Software", "employees_min": 500 }
  }'
```
