Retrieve All Notes
Use the GET /notes endpoint to fetch all notes associated with your account.
You need a valid API key.
-
Send a
GETrequest to the/notesendpoint. -
Include your API key in the
Authorizationheader.
If successful, you will receive a JSON response similar to this:
[
{
"id": "1",
"title": "Shopping List",
"content": "Eggs, milk, bread"
},
{
"id": "2",
"title": "Meeting Notes",
"content": "Project update at 10 AM"
}
]
Demo Request
curl -X GET "https://api.helionote.com/notes" \
-H "Authorization: Bearer YOUR_API_KEY"