# Read an article

Returns a single article. Reading also records the article as read for the
calling user the first time they fetch it, which is what populates
nice.read_at and makes nice.liked meaningful on later reads.

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

## Path parameters:

  - `id` (integer, required)
    The ID of the article.

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `object` (object)

  - `object.id` (integer)

  - `object.name` (string)

  - `object.sub_heading` (string | null)

  - `object.description` (string)

  - `object.content` (string)

  - `object.blog_article_type_id` (string | null)

  - `object.author_id` (integer)

  - `object.thumbnail` (string)

  - `object.wide_thumbnail` (string | null)

  - `object.banner_image` (string)

  - `object.token` (string)

  - `object.public` (integer)

  - `object.publish` (integer)

  - `object.promoted` (integer)

  - `object.created_at` (string)

  - `object.updated_at` (string)

  - `nice` (object)

  - `nice.description` (string)

  - `nice.read_at` (string)

  - `nice.liked` (boolean)

  - `nice.total_likes` (integer)

  - `relations` (array)

  - `permissions` (object)

  - `permissions.read` (boolean)

  - `permissions.update` (boolean)

  - `permissions.delete` (boolean)

