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

# Account API

> Manage your AudioPod AI account and profile

## Get Profile

```bash theme={null}
curl -X GET "https://api.audiopod.ai/api/v1/auth/me" \
  -H "X-API-Key: $AUDIOPOD_API_KEY"
```

**Response:**

```json theme={null}
{
  "id": "uuid",
  "email": "dev@example.com",
  "full_name": "Developer Name",
  "is_verified": true,
  "created_at": "2025-01-01T00:00:00Z",
  "updated_at": "2025-01-01T00:00:00Z"
}
```

***

## Update Profile

```bash theme={null}
curl -X PATCH "https://api.audiopod.ai/api/v1/auth/me" \
  -H "X-API-Key: $AUDIOPOD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "full_name": "New Name"
  }'
```

***

## Change Password

```bash theme={null}
curl -X POST "https://api.audiopod.ai/api/v1/auth/change-password" \
  -H "X-API-Key: $AUDIOPOD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "current_password": "OldPass123",
    "new_password": "NewPass456"
  }'
```

**Password Requirements:**

* Minimum 6 characters
* At least one letter
* At least one number

***

## Quick Reference

| Endpoint                | Method | Description     |
| ----------------------- | ------ | --------------- |
| `/auth/me`              | GET    | Get profile     |
| `/auth/me`              | PATCH  | Update profile  |
| `/auth/change-password` | POST   | Change password |

***

## Next Steps

<Columns cols={2}>
  <Card title="API Keys" icon="key" href="/api-reference/auth">
    Manage API keys
  </Card>

  <Card title="Wallet" icon="wallet" href="/account/api-wallet">
    Check balance & pricing
  </Card>
</Columns>
