This notes management site exposes a static JSON file under /api/notes.json. It is Note[] where Note is:
/api/notes.json
Note[]
Note
interface Note { name: string; url: string; description?: string; }