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

# Comment

> Comment task data returned by the comments API

## TypeScript Type

```typescript theme={null}
interface Comment {
  id: string;
  accountId: string;
  postUrl: string;
  commentText: string;
  status: 'scheduled' | 'pending' | 'verifying' | 'completed' | 'failed';
  commentUrl?: string | null;
  error?: string | null;
  createdAt?: string;
  completedAt?: string | null;
}
```

## Related Endpoints

* `POST /comment/create`
* `POST /comment`
