aYOUne
← Monitoring API

SERPHtmls

Singular: SERPHtml — Base URL: https://monitoring-api.ayoune.app — Access: CRUD

play_circle Try it now beta

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": {
    "_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
  }
}

Endpoints

MethodPathDescriptionRight
GET /serphtmls List with filters/pagination monitoring.serphtmls.view
GET /serphtmls/:id Single record monitoring.serphtmls.view
POST /serphtmls Create new record monitoring.serphtmls.new
PUT /serphtmls Update record monitoring.serphtmls.edit
DELETE /serphtmls/:id Delete record monitoring.serphtmls.delete

SDK

import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');

// List all
const list = await ay.monitoring.sERPHtmls.find().limit(10).exec();

// Single record
const one = await ay.monitoring.sERPHtmls.findById('OBJECT_ID').exec();

// Create
const created = await ay.monitoring.sERPHtmls.create({ name: 'Foo' });

See also