cURL
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 } }
Returns a paginated list of the authenticated user’s articles.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Paginated articles
Show child attributes