aYOUne
← ads API

AdAudienceStats

Singular: AdAudienceStat — Base URL: https://ads-api.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": "6aa370f4dde790fa6ce3bea6",
    "createdBy": "6045f4d25704710012485569",
    "shares": [],
    "createdAt": "2026-09-11T03:09:40.252Z",
    "updatedAt": "2026-09-11T03:09:40.252Z"
  },
  "meta": {
    "links": [
      {
        "rel": "self",
        "href": "https://ads-api.ayoune.app/adaudiencestats/6aa370f4dde790fa6ce3bea6",
        "method": "get",
        "title": "GET",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "relations": [
      {
        "rel": "aYOUneAdvertisementDisplays",
        "title": "MODEL_AYOUNEADVERTISEMENTDISPLAY",
        "href": "https://api.ayoune.app/su/ayouneadvertisementdisplays",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "su.ayouneadvertisementdisplays"
      },
      {
        "rel": "aYOUneAdvertisementDisplayLocations",
        "title": "MODEL_AYOUNEADVERTISEMENTDISPLAYLOCATION",
        "href": "https://api.ayoune.app/su/ayouneadvertisementdisplaylocations",
        "method": "get",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ],
        "right": "su.ayouneadvertisementdisplaylocations"
      }
    ],
    "debugId": "6aa370f5dde790fa6ce3bf0f",
    "errors": [],
    "actions": [
      {
        "rel": "self",
        "action": "COPY",
        "title": "MODEL_ADAUDIENCESTAT",
        "href": "https://api.ayoune.app/ads/adaudiencestats/6aa370f4dde790fa6ce3bea6/copy",
        "method": "post",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      },
      {
        "rel": "self",
        "action": "DELETE",
        "title": "MODEL_ADAUDIENCESTAT",
        "href": "https://api.ayoune.app/ads/adaudiencestats/6aa370f4dde790fa6ce3bea6",
        "method": "delete",
        "types": [
          "application/json",
          "application/yaml",
          "text/csv"
        ]
      }
    ],
    "version": {
      "host": "2026.13.2",
      "core": "2026.335.0"
    },
    "rateLimit": {
      "limit": "2500",
      "remaining": "2386",
      "reset": "1789099737",
      "resetDate": "Fri Sep 11 2026"
    },
    "responseTime": 152.063787,
    "code": 200,
    "status": "success",
    "error": false
  }
}

Endpoints

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

SDK

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

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

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

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

See also