API

This notes management site exposes a static JSON file under /api/notes.json. It is Note[] where Note is:

interface Note {
    name: string;
    url: string;
    description?: string;
}