# List articles

Returns a paginated list of the articles the caller is allowed to read, in
the current account and the accounts above it. A caller with the
blog:article:read permission sees every article; anyone else sees only
published ones, and an unauthenticated caller sees only articles that are
both published and marked public.

Endpoint: GET /api/v2/blog/article
Version: 2.0.0
Security: default

## Query parameters:

  - `per_page` (integer)
    The number of results to return per page. The higher the number the longer the request may take.
It is highly recommended to use this to avoid timeouts as your data grows.
Used in conjunction with the `page` parameter to paginate results.

  - `page` (integer)
    The page of results to return. Used in conjunction with the `per_page` parameter to paginate
results. If not specified, defaults to 1.
The response's next_page_url will be null if there are no
more pages.

  - `filter` (array)
    A filter to apply to the results. Declared as an array of objects, where each object
contains an attr (attribute code), operator and value key. Examples:

?filter[0]['attr']=name&filter[0][operator]=like&filter[0][value]=luke 

?filter[0]['attr']=id&filter[0][operator]=>&filter[0][value]=265 

See the filters documentation for more details on how to use this.

  - `sort_by` (string)
    The field to sort the results by. No ordering is applied unless you specify one, so
row order is not guaranteed. Always send it when paging through a list, otherwise
records can repeat or be missed between pages.
Example: id

  - `sort_order` (string)
    The direction to sort the results by. Can be 'asc' or 'desc', default is 'asc'.

  - `_locale` (string)
    The locale to use for the response. This primarily affects the results of the `nice` field, which
contain human-readable labels and terms, as well as locale-specific date formats.,

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `current_page` (integer)

  - `data` (array)

  - `data.object` (object)

  - `data.object.id` (integer)

  - `data.object.name` (string)

  - `data.object.sub_heading` (string | null)

  - `data.object.description` (string)

  - `data.object.content` (string)

  - `data.object.blog_article_type_id` (string | null)

  - `data.object.author_id` (integer)

  - `data.object.thumbnail` (string)

  - `data.object.wide_thumbnail` (string | null)

  - `data.object.banner_image` (string)

  - `data.object.token` (string)

  - `data.object.public` (integer)

  - `data.object.publish` (integer)

  - `data.object.promoted` (integer)

  - `data.object.created_at` (string)

  - `data.object.updated_at` (string)

  - `data.nice` (object)

  - `data.nice.description` (string)

  - `data.nice.read_at` (string)

  - `data.nice.liked` (boolean)

  - `data.nice.total_likes` (integer)

  - `data.relations` (array)

  - `data.permissions` (object)

  - `data.permissions.read` (boolean)

  - `data.permissions.update` (boolean)

  - `data.permissions.delete` (boolean)

  - `first_page_url` (string)

  - `from` (integer)

  - `next_page_url` (string)

  - `path` (string)

  - `per_page` (integer)

  - `prev_page_url` (string | null)

  - `to` (integer)

