Documentation
Build your life OS with our developer tools.
API Reference
Interact with your data programmatically. All API requests require a Bearer Token.
Authentication
Include your API key in the `Authorization` header.
Authorization: Bearer sk_live_...
Endpoints
GET
/api/v1/logsRetrieve your daily logs with optional filtering.
curl -X GET https://api.secretmanager.io/v1/logs \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json"
POST
/api/v1/ingestIngest metrics from external sources (JSON).
curl -X POST https://api.secretmanager.io/v1/ingest \
-H "Authorization: Bearer sk_live_..." \
-d '{
"source": "oura",
"metrics": {
"sleep_score": 85,
"readiness": 92
}
}'