Skip to main content
GET
/
v1
/
articles
List articles
curl --request GET \
  --url https://hypodash.com/v1/articles \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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"
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "per_page": 123,
    "to": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
integer
default:1
per_page
integer
default:10

Response

Paginated articles

data
object[]
meta
object