P

pull/list retrieve list of notes

/pull/list/[slug]

Retrieve a list of sub notes.

GET Parameters

key: string (optional) api_key for your project, also passable as a Bearer token in the header

limit: integer (optional) limit the number of child notes returned

page: integer (optional) Allows pagination

Return Parameters

title: string Title of the page

description: string Description for the page

img.url: string Image url if one supplied / generated

img.alt: string Alt text for main image

dateModified: date In yyyy-mm-dd format

author: string The author's name

Example

https://pullnote.com/pull/list?limit=3&page=1&key=...

[
  {
    "_id": "65b25e6152be6b2f62100382",
    "parent_id": 0,
    "title": "Headless Markdown CMS with AI",
    "description": "Homepage for the Pullnote headless CMS blog engine.",
    "modified": 1715936338091,
    "slug": "headless-markdown-cms-with-ai",
    "href": "https://pullnote.com",
    "img": {
      "src": "",
      "alt": "Headless Markdown CMS with AI"
    },
    "pathname": "",
    "is_category": 0,
    "dateModified": "2024-05-17"
  },
  {
    "_id": "65b760e35e23da95c7401da9",
    "parent_id": 0,
    "is_category": 0,
    "slug": "about",
    "title": "About",
    "description": "",
    "modified": 1709552011656,
    "pathname": "//about",
    "href": "https://pullnote.com//about",
    "img": {
      "src": "",
      "alt": "About"
    },
    "dateModified": "2024-03-04"
  },
  {
    "_id": "65b4c2f501272f0180dc6c58",
    "parent_id": 0,
    "is_category": 1,
    "slug": "docs",
    "title": "Developer Docs",
    "description": "",
    "modified": 1709469093045,
    "pathname": "//docs",
    "href": "https://pullnote.com//docs",
    "img": {
      "src": "",
      "alt": "Developer Docs"
    },
    "dateModified": "2024-03-03"
  }
]

Developers Blog T&Cs Privacy