Home

Retrieve All Notes

Use the GET /notes endpoint to fetch all notes associated with your account.

You need a valid API key.

  1. Send a GET request to the /notes endpoint.
  2. Include your API key in the Authorization header.

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"