Skip to main content
GET
/
v1
/
article
/
{article}
Get single article
curl --request GET \
  --url https://hypodash.com/v1/article/{article} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "title": "<string>",
  "body": "<string>",
  "status": "<string>",
  "published_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

article
integer
required

Article ID

Response

Article

id
integer
title
string
body
string
status
string
published_at
string<date-time>
created_at
string<date-time>
updated_at
string<date-time>