← Monitoring API
SerpHtmlArchives
Singular: SerpHtmlArchive — Base URL: https://monitoring-api.ayoune.app — Access: CRUD
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": {
"meta": {
"source": "market",
"keep": false,
"parsed": false,
"rechecked": false,
"hasAds": false,
"hasPLA": false,
"hasSEA": false,
"hasFlights": false,
"hasBooking": false,
"hasKnowledgeGraph": false,
"hasBooks": false,
"hasVideos": false
},
"_id": "65e0b173121b7d48fe1597df",
"archived": false,
"_user": "6045f4d25704710012485569",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2024-02-29T16:31:47.721Z",
"updatedAt": "2024-02-29T16:31:47.721Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://monitoring-api.ayoune.app/serphtmlarchives/65e0b173121b7d48fe1597df",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "aYOUneProxyUsers",
"title": "MODEL_AYOUNEPROXYUSER",
"href": "https://api.ayoune.app/su/ayouneproxyusers/6045f4d25704710012485569",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "su.proxyusers"
}
],
"relations": [
{
"rel": "aYOUneKeywords",
"title": "MODEL_AYOUNEKEYWORD",
"href": "https://api.ayoune.app/su/ayounekeywords",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "su.keywords"
},
{
"rel": "Serps",
"title": "MODEL_SERP",
"href": "https://api.ayoune.app/monitoring/serps",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "monitoring.serps"
},
{
"rel": "aYOUneCrawlingDevices",
"title": "MODEL_AYOUNECRAWLINGDEVICE",
"href": "https://api.ayoune.app/su/ayounecrawlingdevices",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "su.crawlingdevices"
},
{
"rel": "aYOUneProxies",
"title": "MODEL_AYOUNEPROXY",
"href": "https://api.ayoune.app/su/ayouneproxies",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "su.proxies"
},
{
"rel": "aYOUneProxyUsers",
"title": "MODEL_AYOUNEPROXYUSER",
"href": "https://api.ayoune.app/su/ayouneproxyusers",
"method": "get",
"types": [
"application/json",
"application/yaml",
"text/csv"
],
"right": "su.proxyusers"
}
],
"debugId": "6a619726ae831600b9317e90",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_SERPHTMLARCHIVE",
"href": "https://api.ayoune.app/monitoring/serphtmlarchives/65e0b173121b7d48fe1597df/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_SERPHTMLARCHIVE",
"href": "https://api.ayoune.app/monitoring/serphtmlarchives/65e0b173121b7d48fe1597df/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.18.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2286",
"reset": "1784783607",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 24.534957,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /serphtmlarchives |
List with filters/pagination | monitoring.serphtmlarchives.view |
| GET | /serphtmlarchives/:id |
Single record | monitoring.serphtmlarchives.view |
| POST | /serphtmlarchives |
Create new record | monitoring.serphtmlarchives.new |
| PUT | /serphtmlarchives |
Update record | monitoring.serphtmlarchives.edit |
| DELETE | /serphtmlarchives/:id |
Delete record | monitoring.serphtmlarchives.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.monitoring.serpHtmlArchives.find().limit(10).exec();
// Single record
const one = await ay.monitoring.serpHtmlArchives.findById('OBJECT_ID').exec();
// Create
const created = await ay.monitoring.serpHtmlArchives.create({ name: 'Foo' });