← Monitoring API
PageStats
Singular: PageStat — Base URL: https://monitoring-api.ayoune.app — Access: read-only
Try it now
beta
Response (live)
Requests are proxied through the consumer-app to *.ayoune.app. Tokens stay in your browser and are forwarded per call.
Example response (recorded) sample
A real, previously recorded GET /:id response of this endpoint — not the live call above. Sensitive fields are masked.
{
"payload": {
"lighthouse": {
"mobile": {
"results": {
"performance": 0,
"performanceChange": 0,
"accessibility": 0,
"accessibilityChange": 0,
"bestPractices": 0,
"bestPracticesChange": 0,
"seo": 0,
"seoChange": 0,
"pwa": 0,
"pwaChange": 0
}
},
"desktop": {
"results": {
"performance": 0,
"performanceChange": 0,
"accessibility": 0,
"accessibilityChange": 0,
"bestPractices": 0,
"bestPracticesChange": 0,
"seo": 0,
"seoChange": 0,
"pwa": 0,
"pwaChange": 0
}
}
},
"_id": "65e0b16a121b7d48fe1596fc",
"tags": [],
"videos": [],
"createdBy": "6045f4d25704710012485569",
"_keywords": [],
"createdAt": "2024-02-29T16:31:38.587Z",
"updatedAt": "2024-02-29T16:31:38.587Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://monitoring-api.ayoune.app/pagestats/65e0b16a121b7d48fe1596fc",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [
{
"rel": "Keywords",
"title": "MODEL_KEYWORD",
"href": "https://api.ayoune.app/monitoring/keywords",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "monitoring.keywords"
},
{
"rel": "Articles",
"title": "MODEL_ARTICLE",
"href": "https://api.ayoune.app/cms/articles",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "cms.articles"
},
{
"rel": "Properties",
"title": "MODEL_PROPERTY",
"href": "https://api.ayoune.app/config/properties",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "config.properties"
}
],
"debugId": "6a61970bae831600b931796e",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_PAGESTAT",
"href": "https://api.ayoune.app/monitoring/pagestats/65e0b16a121b7d48fe1596fc/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_PAGESTAT",
"href": "https://api.ayoune.app/monitoring/pagestats/65e0b16a121b7d48fe1596fc/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.18.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2371",
"reset": "1784783607",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 100.943714,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /pagestats |
List with filters/pagination | monitoring.pagestats.view |
| GET | /pagestats/:id |
Single record by ID | monitoring.pagestats.view |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.monitoring.pageStats.find().limit(10).exec();
// Single record
const one = await ay.monitoring.pageStats.findById('OBJECT_ID').exec();