List authors and fetch single author resources.
/authors) and apply to articles content.| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number |
per_page | integer | 10 | Items per page |
search | string | - | Search by name, slug, or bio |
orderby | string | name | Sort by name, slug, id, date, created_at |
order | string | desc | asc or desc |
_fields | string | - | Comma-separated attribute field filter |
| Field | Type | Description |
|---|---|---|
data[].id | string | Author ID |
data[].type | string | Resource type (authors) |
data[].attributes.name | string | Author display name |
data[].attributes.slug | string | Author slug |
data[].attributes.bio | string | null | Author bio |
data[].attributes.avatar_url | string | null | Avatar image URL |
data[].attributes.social_links | object | null | Social links |
data[].attributes.auto_assign_description | string | null | Auto-assignment guidance text |
data[].attributes.post_count | number | Published article count for this author |
data[].attributes.created_at | string | ISO datetime |
data[].attributes.updated_at | string | ISO datetime |
data[].relationships.articles | object | Related filtered items feed |
meta.total | number | Total authors |
meta.per_page | number | Page size |
meta.page | number | Current page |
search filters by author name, slug, and bio.page and per_page control pagination.orderby and order control sorting.404 when single author ID/slug is not found.