aYOUne
← Research API

KeywordIntakeSources

Singular: KeywordIntakeSource — Base URL: https://research.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)

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": "6a829228ebbc31e2468fa1f3",
    "kind": "domain-list",
    "name": "NERVOUS_AZURE_WAT TAMBOR",
    "status": "draft",
    "createdBy": "6045f4d25704710012485569",
    "createdAt": "2026-08-17T04:46:32.213Z",
    "updatedAt": "2026-08-17T04:46:32.213Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://research.ayoune.app/keywordintakesources/6a829228ebbc31e2468fa1f3",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "Documents",
        "title": "MODEL_DOCUMENT",
        "href": "https://api.ayoune.app/crm/documents",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "crm.documents"
      }
    ],
    "debugId": "6a829228ebbc31e2468fa21a",
    "errors": [],
    "actions": [],
    "version": {
      "host": "2026.15.0",
      "core": "2026.289.1"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2472",
      "reset": "1786945591",
      "resetDate": "Mon Aug 17 2026"
    },
    "responseTime": 47.899509,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

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

SDK

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

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

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

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

See also