🎙️ Snelnotuleren API

Integreer automatische notulen in je eigen applicatie

Quick Start

Begin met het aanvragen van je client credentials via het dashboard.

1. Token ophalen

curl -X POST https://api.snelnotuleren.nl/api/v1/auth/token \
-H "X-Client-ID: your_client_id" \
-H "X-Client-Secret: your_client_secret"

2. Order aanmaken

curl -X POST https://api.snelnotuleren.nl/api/v1/create-order \
-H "Authorization: Bearer your_token" \
-H "Content-Type: application/json" \
-d '{
    "fileName": "vergadering.mp3",
    "email": "contact@bedrijf.nl",
    "context": "Maandelijkse vergadering",
    "reportType": "transcriptie",
    "modelType": "standard"
}'

3. Bestand uploaden

curl -X PUT "upload_url_from_response" \
--upload-file vergadering.mp3 \
-H "Content-Type: application/octet-stream"

Rapport Types & Prijzen

Type Prijs Beschrijving
transcriptie €5 Volledige transcriptie
korte_notulen €10 Beknopte samenvatting
middel_notulen €20 Gebalanceerde notulen
lange_notulen €25 Uitgebreide notulen

Resources

API Documentation Python SDK