Home

Retrieve a Note by ID

Use this endpoint to fetch the details of a single note by providing its unique identifier.

The GET /notes/{id} endpoint allows developers to retrieve a specific note. This is useful when you need to display or update note details in your application.

  1. Send a GET request to:
    
    /notes/{id}   
    
  2. Replace {id} with the note’s unique identifier.
  3. Include a valid authentication token in the request header.

The response contains the details of the requested note in JSON format. If the note does not exist, the API returns a 404 Not Found error.

Request(cURL


curl -X GET "https://api.helionote.com/v1/notes/123" \
-H "Authorization: Bearer [your_api_key]"

Response (JSON)


{
"id": "123",
"title": "Project Kickoff",
"content": "Meeting scheduled for Monday at 10 AM",
"created_at": "2025-08-18T09:30:00Z"
}