DLX Quickstart
Understand the current flow in three minutes.
DLX Phase 1 is a workflow safety layer for Auditable Execution Gateway, not raw API access. The evaluator path is narrow on purpose.
Current live evaluation base URL: https://nurturing-nurturing-production.up.railway.app
Current Public Surface
- POST /v1/executions/extract
- GET /v1/executions/:id
- optional webhook delivery for completion notification
Evaluator Path
- create an execution with POST /v1/executions/extract
- receive an accepted-first response
- poll GET /v1/executions/:id or optionally provide a webhook target
- reach either succeeded or failed_safe
- use the receipt viewer and ROI calculator where relevant
Minimal Live Request
An evaluation API key is required. Request one if you want to test the live gateway.
curl -X POST https://nurturing-nurturing-production.up.railway.app/v1/executions/extract \
-H "content-type: application/json" \
-H "x-api-key: <YOUR_EVAL_API_KEY>" \
-d '{
"input": { "text": "phase1-success" },
"outputContract": "contract:extract.result.v1",
"budget": { "maximumEu": 1 },
"idempotencyKey": "phase1-live-eval-1"
}'
The create response is accepted-first. pollUrl is a relative path and should be resolved against the gateway base URL, for example https://nurturing-nurturing-production.up.railway.app/v1/executions/exec_mmz8xtgp_h5pael2y.
What You Get
- guaranteed / auditable task execution at the workflow boundary
- a workflow safety layer, not just an LLM call
- succeeded or failed_safe, not silent optimistic completion
- polling is a valid evaluator path; webhook is optional
Need Evaluator Review On One Real Payload?
Use the narrow design-partner path when you want to move from "interesting" to one sample payload, one target schema, and either polling or webhook as the return method.
Contact / Next Step
Evaluator Access
Email tetsutetsu11@icloud.com to request an evaluation API key, submit one payload for review, or contact for evaluator access.
- request an evaluation API key
- submit one payload for review
- contact for evaluator access