← Personal API
Journals
Singular: Journal — Base URL: https://personal-api.ayoune.app — Access: CRUD — Machine-readable spec (JSON · YAML)
Try it now
beta
Response (live)
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": "6aa3850a7cfed5627209a914",
"_user": "6045f4d25704710012485569",
"name": "REVOLUTIONARY_PEACH_LUMINARA UNDULI",
"createdBy": "6045f4d25704710012485569",
"createdAt": "2026-09-11T04:35:22.095Z",
"updatedAt": "2026-09-11T04:35:23.499Z",
"modifiedBy": "6045f4d25704710012485569"
},
"meta": {
"links": [
{
"rel": "self",
"href": "https://personal-api.ayoune.app/journals/6aa3850a7cfed5627209a914",
"method": "get",
"title": "GET",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"relations": [],
"debugId": "6aa3850c7cfed5627209a998",
"errors": [],
"actions": [
{
"rel": "self",
"action": "COPY",
"title": "MODEL_JOURNAL",
"href": "https://api.ayoune.app/personal/journals/6aa3850a7cfed5627209a914/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
},
{
"rel": "self",
"action": "DELETE",
"title": "MODEL_JOURNAL",
"href": "https://api.ayoune.app/personal/journals/6aa3850a7cfed5627209a914/copy",
"method": "post",
"types": [
"application/json",
"application/yaml",
"text/csv"
]
}
],
"version": {
"host": "2026.1.2",
"core": "2026.277.0"
},
"rateLimit": {
"limit": "2500",
"remaining": "2455",
"reset": "1789104909",
"resetDate": "Fri Sep 11 2026"
},
"responseTime": 382.947029,
"code": 200,
"status": "success",
"error": false
}
}
Endpoints
| Method | Path | Description | Right |
|---|---|---|---|
| GET | /journals |
List with filters/pagination | personal.journals.view |
| GET | /journals/:id |
Single record | personal.journals.view |
| POST | /journals |
Create new record | personal.journals.new |
| PUT | /journals |
Update record | personal.journals.edit |
| DELETE | /journals/:id |
Delete record | personal.journals.delete |
SDK
import { aYOUne } from '@tolinax/ayoune';
const ay = new aYOUne('pat_your_token');
// List all
const list = await ay.personal.journals.find().limit(10).exec();
// Single record
const one = await ay.personal.journals.findById('OBJECT_ID').exec();
// Create
const created = await ay.personal.journals.create({ name: 'Foo' });