This page only documents routes that exist in the current codebase.
CURRENT API
API Docs
Review the endpoints and access model that are publicly described today
Last reviewed
2026-03-08
Public billing
Not public
Paid API packaging stays on hold until the core engine is finished.
Support
support@datarwin.com
Use support for access, launch, or partner/API questions.
Current API scope
- This page describes currently exposed public and authenticated routes, not a future commercial API contract.
- Public status routes are readable without signing in.
- Account, key, and subscription routes require an authenticated session.
- Pricing and paid API packaging remain on a public hold page until the core engine is complete.
Quick start
curl -X GET "https://datarwin.com/api/briefings/status"Authentication
Authenticated routes use the same account session used in the dashboard. API keys are available inside the signed-in dashboard.
Authorization: Bearer ${API_KEY}You can manage keys from Dashboard → API Keys.
Current endpoints
GET
/api/briefings/statusPublic status
Read the current public briefing status and schedule.
GET
/api/stats/summaryPublic metrics
Read the public summary counters used on the website.
GET
/api/stats/recent-signupsPublic metrics
Read the localized recent-signup activity string shown on the website.
GET
/api/users/meAuthenticated dashboard
Return the signed-in account profile, provider, and dashboard state.
GET
/api/keysAuthenticated dashboard
List API keys for the signed-in account.
GET
/api/subscriptions/meAuthenticated dashboard
Return the signed-in account subscription state.
Response example
{
"success": true,
"data": {
"is_live": false,
"next_briefing_at": "2026-03-08T08:00:00+09:00",
"schedule": ["08:00", "12:00", "16:00", "22:00"]
}
}Access model
| Lane | Availability | Note |
|---|---|---|
| Public status routes | Live | Readable without sign-in for current website/status surfaces. |
| Dashboard-authenticated routes | Live | Available after account sign-in for account, API key, and subscription actions. |
| Commercial API packaging | Preparing | Public paid API packaging stays on hold until the core engine is complete. |