Back to System

API Reference

Programmatic access to your logs.

Authentication

All API requests require a standard Bearer token header. Generate your API key from your account dashboard.

Authorization: Bearer hyp_xxxxxxxxxx

GET /v1/entries

Fetches all journal entries for the authenticated user, paginated in batches of 50.

POST /v1/entries

Creates a new encrypted journal entry. Requires a JSON payload containing the raw content, mood, and location.

{
  "content": "System operational.",
  "mood": "FOCUSED",
  "location": "Core"
}

This page will be updated soon...