List Articles
Retrieve a paginated list of all articles generated for a specific workspace.
Endpoint
GET
https://api.hatrio.ai/api/v1/articles Parameters
| Parameter | Type | Description |
|---|---|---|
| website_id | uuid | Required. Filter by workspace. |
| limit | number | Defaults to 20. Max 100. |
| period | string | Optional. Filter by time period. Must be day, week, or month. |
Example Response
{
"success": true,
"articles": [
{
"id": "art_1",
"title": "Scaling AI in 2026",
"status": "published",
"created_at": "2026-05-14T10:00:00Z"
}
]
}