Home

Quickstart

Follow these steps to make your first request to the HelioNote REST API.

You need an API key from the HelioNote Developer Portal and a tool like curl or Postman.

  1. Open your terminal or preferred API testing tool.
  2. Copy your API key.
  3. Make your first request to the /notes endpoint.
    
    curl -X GET "https://api.helionote.com/notes" \
    -H "Authorization: Bearer YOUR_API_KEY"
                    

If successful, you will receive a JSON response similar to the following:


[
{
"id": "1",
"title": "First Note",
"content": "This is your first note created in HelioNote."
}
]