API
A clean, versioned API for programmatic access
All Mongeflow data is accessible through a REST API using API key authentication. Tenant-scoped, JSON-formatted, and designed for reliable integration.
API Key Auth
Generate API keys from your dashboard. Bearer token authentication. Per-key revocation and rotation.
Versioned Endpoints
/api/v1/analyses, /api/v1/exports. Stable contracts, predictable pagination, consistent JSON responses.
Export via API
Trigger PDF, DOCX, PPTX, XLSX, JSON, CSV, and Code Bundle exports programmatically.
Webhook Events
13 event types including analysis lifecycle, actions, exports, reviews, and team changes. HMAC-signed with retries.
Structured Outputs
JSON and CSV exports designed for spreadsheets, BI tools, data pipelines, and automation workflows.
Tenant Isolation
Every API call is scoped to your organization. Role-based access. Audit logging.
Quick start
Get started in minutes
# List your analyses
curl https://mongeflow.com/api/v1/analyses \
-H "Authorization: Bearer mf_live_your_key"
# Export as PDF
curl -X POST https://mongeflow.com/api/v1/exports \
-H "Authorization: Bearer mf_live_your_key" \
-H "Content-Type: application/json" \
-d '{"analysis_id":"...", "format":"pdf"}'
# Warehouse export (BigQuery NDJSON)
curl https://mongeflow.com/api/v1/warehouse?format=ndjson \
-H "Authorization: Bearer mf_live_your_key" \
> analyses.ndjson
# Warehouse export (Snowflake CSV)
curl https://mongeflow.com/api/v1/warehouse?format=csv \
-H "Authorization: Bearer mf_live_your_key" \
> analyses.csv
Webhooks
13 real-time event notifications
Subscribe to events and receive HMAC-signed HTTP callbacks with automatic retries when analyses complete, actions execute, exports are ready, or reviews are finished.
Full API reference
Authentication, rate limits, endpoints, webhook signing, connectors, and OpenAPI schema.
Build integrations that work
Access Mongeflow's structured analysis outputs, trigger exports, and connect your workflow tools through a clean REST API.