Flow Myna

Flow Myna API Docs

Send process mining events to Flow Myna from your applications, ETL pipelines, and integrations. Our API uses clear, intuitive naming to make integration straightforward.

Overview

The Flow Myna Public API allows external systems to send process mining events programmatically. Each API key is linked to a specific dataset, so you don't need to specify where your data goes — it's determined by which API key you use.

Quick Example

Here's how simple it is to record an event:

Record an Event

POST
/api/public/v1/event
curl -X POST 'https://api.flowmyna.com/api/public/v1/event' \
-H 'Authorization: Bearer fm_live_your_key_here' \
-H 'Content-Type: application/json' \
-d '{
    "event": "Order Placed",
    "objects": [
      {"type": "Order", "id": "ORD-123"},
      {"type": "Customer", "id": "CUST-456"}
    ],
    "properties": {
      "total": 149.99,
      "items_count": 3
    }
  }'

Endpoints

Explore our API endpoints to integrate Flow Myna into your workflow:

Getting Started

To start sending events to Flow Myna:

  1. 1. Create an API Key — Go to Workspace → Data → API Keys
  2. 2. Choose a Dataset — Create new or select existing
  3. 3. Save Your Key — It's only shown once!
  4. 4. Start Sending Events — Use our SDKs or HTTP API