Articles
Articles
GET
/
api
/
v1
/
articles
Articles
Copy
curl --request GET \
--url https://rankyak.com/api/v1/articles \
--header 'X-Api-Key: <api-key>'
Copy
{
"data": [
{
"id": 123,
"slug": "<string>",
"excerpt": "<string>",
"title": "<string>",
"meta_title": "<string>",
"meta_description": "<string>",
"html": "<string>",
"markdown": "<string>",
"header_image_url": "<string>",
"publish_at": "2023-11-07T05:31:56Z",
"published_at": "2023-11-07T05:31:56Z"
}
],
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
},
"meta": {}
}
Authorizations
Query Parameters
Required range:
1 <= x <= 100
Response
200
application/json
Successful operation
The response is of type object
.
Articles
Copy
curl --request GET \
--url https://rankyak.com/api/v1/articles \
--header 'X-Api-Key: <api-key>'
Copy
{
"data": [
{
"id": 123,
"slug": "<string>",
"excerpt": "<string>",
"title": "<string>",
"meta_title": "<string>",
"meta_description": "<string>",
"html": "<string>",
"markdown": "<string>",
"header_image_url": "<string>",
"publish_at": "2023-11-07T05:31:56Z",
"published_at": "2023-11-07T05:31:56Z"
}
],
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
},
"meta": {}
}
Assistant
Responses are generated using AI and may contain mistakes.