Request a particular page
Contents
Get a particular page by the page key.
All requests to the API need the API Token
. You can find the token in the API plugin settings.
Admin panel > Plugins > API > API Token
HTTP Request
GET /api/pages/{page key}
Parameters
key | value | Default value |
---|---|---|
required token |
string API Token |
Response
HTTP Code: 200
Content-Type: application/json
Body:
{
"status": "0",
"message": "Page filtered by key: my-dog",
"data": {
"key": "my-dog",
"title": "My dog",
"content": "...",
"contentRaw": "...",
"description": "...",
"type": "published",
"slug": "my-dog",
"date": "2019-02-02 00:09:38",
"dateUTC": "2019-02-02 22:09:38",
"tags": "",
"permalink": "https://www.example.com/my-dog",
"coverImage": false,
"coverImageFilename": false
}
}
CURL command example
You can request a particular page by the page key.
The following example shows how to get the page with the key my-dog
.
$ curl -X GET "https://www.example.com/api/pages/my-dog?token=80a09ba055b73f68e3c9e7c9ea12b432"
Response Body
{
"status": "0",
"message": "Page filtered by key: my-dog",
"data": {
"key": "my-dog",
"title": "My dog",
"content": "...",
"contentRaw": "...",
"description": "...",
"type": "published",
"slug": "my-dog",
"date": "2019-02-02 00:09:38",
"dateUTC": "2019-02-02 22:09:38",
"tags": "",
"permalink": "https://www.example.com/my-dog",
"coverImage": false,
"coverImageFilename": false
}
}
Javascript example
You can use the Fetch API to get the page.
<script>
fetch("https://www.example.com/api/pages/my-dog?token=eaf5df0a626145cc6d37b76f3eccc826", {
method: 'get'
}).then(function(response) {
return response.json();
}).then(function(json) {
console.log(json.data);
});
</script>