Quickstart
The fastest path from zero to a running pipeline.
1. Get an API key
See Authentication if you don't have one yet.
2. Create a pipeline
terminal
bash
curl -X POST https://api.kmp.kaiju.go.example/v2/pipelines \
-H "Authorization: Bearer $KMP_API_KEY" \
-d '{"name":"my-first-pipeline","source_connector_id":"conn_demo_source","destination_connector_id":"conn_demo_dest"}'
3. Watch it run
Subscribe to pipeline.completed via Webhooks, or poll the Events endpoint to see events as they're processed.
That's it
For a fuller walkthrough with a real source and destination, go to Building your first pipeline in the Guides section.