All API endpoints reflect your own structure so if you have a page at mysite.com/blog/art your content simply comes from api.pullnote.com/blog/art e.g.
https://api.pullnote.com/blog/art?key=PULLNOTE_API_KEY
Use POST to the same URL add a note, PATCH to update and DELETE to remove.
Posting to a URL that does not exist will create it.
pass the list=1
parameter e.g.
https://api.pullnote.com/blog?list=1
path: string
The path (without your domain)
title: string
Title of the page
content: string
Markdown content (unless HTML is requested with html=1)
description: string
Description for the page
imgUrl: string
Image url if one supplied / generated
dateModified: date
In yyyy-mm-dd format
author: string
The author's name (can be a nom de plume)
GET
https://api.pullnote.com/iphone-12-pro-repairs-london?key=...&format=html
{
"_id":"686f729fd6eecf4e91b37851",
"path":"iphone-12-pro-repairs-london",
"title":"On demand iPhone 12 Pro repairs in Greater London",
"description":"Fast, professional iPhone 12 Pro repairs across London.",
"imgUrl":"https://...",
"created":1752134303405,
"modified":1752134303405,
"author":"Billy",
"data":{"manufacturerID":"1","deviceID":"145","city":"london"},
"content":"<p>If you own an iPhone 12 Pro and you're based in Greater London, our on demand repair service offers a fast and reliable solution to get your device back to perfect working order. Whether you're in vibrant areas like Camden, Shoreditch, or Canary Wharf, our couriers can pick up your broken iPhone 12 Pro directly from your home or workplace, saving you time and hassle. Our skilled technicians provide high-quality repairs quickly, often returning your device within just two hours. Stay connected in London’s busy environment without the disruption of a lengthy repair process by choosing our convenient, professional service tailored for London's unique pace and lifestyle.</p>\n"
}
POST/PATCH
https://api.pullnote.com/iphone-12-pro-repairs-london
{
key: "..."
title: "Title changes...",
content: "Content changes..."
}