aYOUne
← Monitoring API

SerpHtmlArchives

Singular: SerpHtmlArchive — Base-URL: https://monitoring-api.ayoune.app — Zugriff: CRUD

play_circle Jetzt ausprobieren beta

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

Endpunkte

MethodePathBeschreibungRight
GET /serphtmlarchives Liste mit Filtern/Paginierung monitoring.serphtmlarchives.view
GET /serphtmlarchives/:id Einzelner Datensatz monitoring.serphtmlarchives.view
POST /serphtmlarchives Neuen Datensatz erstellen monitoring.serphtmlarchives.new
PUT /serphtmlarchives Datensatz aktualisieren monitoring.serphtmlarchives.edit
DELETE /serphtmlarchives/:id Datensatz löschen monitoring.serphtmlarchives.delete

SDK

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

// Alle abrufen
const list = await ay.monitoring.serpHtmlArchives.find().limit(10).exec();

// Einzelnen Datensatz
const one = await ay.monitoring.serpHtmlArchives.findById('OBJECT_ID').exec();

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

Weiterführend