← Monitoring API
SERPHtmls
Singular: SERPHtml — Base-URL: https://monitoring-api.ayoune.app — Zugriff: CRUD
Jetzt ausprobieren
beta
Response (live)
Requests werden über den consumer-app Proxy an *.ayoune.app weitergeleitet. Tokens bleiben im Browser und werden pro Call mitgesendet.
Beispiel-Response (aufgezeichnet) Beispiel
Eine echte, zuvor aufgezeichnete GET /:id-Antwort dieses Endpunkts — nicht der Live-Call oben. Sensible Felder sind maskiert.
{
"payload": {
"_id": "6a619715ae831600b93179b7",
"archived": false,
"_user": "6045f4d25704710012485569",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-07-23T04:22:45.249Z",
"updatedAt": "2026-07-23T04:22:45.249Z"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://monitoring-api.ayoune.app/serphtmls/6a619715ae831600b93179b7",
"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": "6a619716ae831600b93179e3",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_SERPHTML",
"href": "https://api.ayoune.app/monitoring/serphtmls/6a619715ae831600b93179b7/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_SERPHTML",
"href": "https://api.ayoune.app/monitoring/serphtmls/6a619715ae831600b93179b7/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.18.0",
"core": "2026.257.1"
},
"rateLimit": {
"limit": "2500",
"remaining": "2354",
"reset": "1784783607",
"resetDate": "Thu Jul 23 2026"
},
"responseTime": 27.531555,
"code": 200,
"status": "success",
"error": false
}
}
Endpunkte
| Methode | Path | Beschreibung | Right |
|---|---|---|---|
| GET | /serphtmls |
Liste mit Filtern/Paginierung | monitoring.serphtmls.view |
| GET | /serphtmls/:id |
Einzelner Datensatz | monitoring.serphtmls.view |
| POST | /serphtmls |
Neuen Datensatz erstellen | monitoring.serphtmls.new |
| PUT | /serphtmls |
Datensatz aktualisieren | monitoring.serphtmls.edit |
| DELETE | /serphtmls/:id |
Datensatz löschen | monitoring.serphtmls.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// Alle abrufen
const list = await ay.monitoring.sERPHtmls.find().limit(10).exec();
// Einzelnen Datensatz
const one = await ay.monitoring.sERPHtmls.findById('OBJECT_ID').exec();
// Erstellen
const created = await ay.monitoring.sERPHtmls.create({ name: 'Foo' });