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

# Delete Trait

> Delete a trait from a profile

## Overview

Removes a trait from a user profile.

## Path Parameters

<ParamField path="id" type="string" required>
  Profile ID
</ParamField>

<ParamField path="key" type="string" required>
  Trait key to delete
</ParamField>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>

## Example

```bash theme={null}
curl -X DELETE https://api.yourserver.com/api/profiles/user-123/traits/name \
  -H "Authorization: Bearer gp_your_key"
```
