GET
/
v1
/
articles
/
{uid}
curl --request GET \
  --url https://api.siit.io/v1/articles/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "uid": "<string>",
  "title": "<string>",
  "subtitle": "<string>",
  "source": "external",
  "author_uid": "<string>",
  "last_editor_uid": "<string>",
  "published": true,
  "external_url": "<string>",
  "body": "<string>",
  "category_uid": "<string>",
  "category": {
    "uid": "<string>",
    "name": "<string>"
  },
  "archived_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z"
}

Introduction

Allows retrieving a draft or published Article.

Usage

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

uid
string
required

The UID of the Article

Response

200
application/json

Article show

The response is of type object.