Create a Note
Use this endpoint to create a new note by sending its content in the request body.
- You must have a valid API key.
- Ensure you include the
Content-Type: application/json
header.
If successful, the API returns a 201 Created
status and the newly created note object in JSON.
Request (cURL):
curl -X POST "https://api.helionote.com/v1/notes" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Meeting Notes",
"content": "Discuss project roadmap and deadlines.",
"tags": ["work", "planning"]
}'
Response:
{
"id": "789",
"title": "Meeting Notes",
"content": "Discuss project roadmap and deadlines.",
"tags": ["work", "planning"],
"created_at": "2025-08-18T10:23:45Z"
}