API
Decifirst API
Embed augmented decisioning into your own tools. REST, JSON, Bearer token. Private beta — available on Standard and Pro plans.
Authentication
curl https://api.decifirst.com/v1/decisions \
-H "Authorization: Bearer $DECIFIRST_API_KEY"Create a decision
POST /v1/decisions
{
"context": "Should we expand the warehouse to Rouen?",
"options": ["Expand now", "Wait 6 months", "Outsource"],
"horizon_months": 18
}Response
{
"id": "dec_8f2a...",
"recommendation": "Wait 6 months",
"confidence": 0.78,
"scenarios": 10000,
"expected_value_eur": 412000,
"rationale": "Demand variance peaks in Q4..."
}