EdgeJournalPerformance Platform

Settings

Manage your EdgeJournal configuration and integrations.

Companion App Integration
Configure your desktop tool to push confirmed trades directly.
Endpoint Ready

Direct Data Ingestion

The EdgeJournal API is configured to receive structured JSON objects. Your companion app should handle AI parsing and user confirmation, then POST the final trade data here.

Ingestion Endpoint

POST confirmed trades to this URL.

/api/ingest

Expected Payload

JSON structure matching our Trade interface.

application/json

Include this as x-api-key in your request headers.

Integration Guide

// Example POST body

{

"trade": {

"symbol": "NVDA",

"side": "long",

"entryPrice": 910.25,

"notes": "Confirmed breakout entry via Voice Companion"

}

}