Scanverion für Entwickler
Erstellen Sie Ihre erste Integration.
Beginnen Sie mit einer funktionierenden Anfrage und wählen Sie danach SDK, CLI, MCP-Agentenintegration, Collection oder den vollständigen API-Leitfaden.
Aus der laufenden .NET API und ihren typisierten Anfrage- und Antwortmodellen generiert.
OpenAPI-JSON herunterladenErste Anfrage
Beginnen Sie mit dem kürzesten funktionierenden Weg.
Setzen Sie zwei serverseitige Umgebungsvariablen, senden Sie ein Dokument und prüfen Sie die typisierte Antwort. Wählen Sie danach ein SDK oder eine Collection.
curl --request POST "$SCANVERION_API_URL/api/v1/ai/document-processing" \
--header "Authorization: Bearer $SCANVERION_API_KEY" \
--header "Idempotency-Key: first-document-001" \
--form "File=@document.jpg;type=image/jpeg" \
--form "Operations=Scanner"Entwicklerwerkzeuge
Wählen Sie einen Weg. Nutzen Sie denselben Vertrag.
Vom Beispiel zur geprüften serverseitigen Anfrage mit einem API-Vertrag für jedes Werkzeug.
MCP einrichtenPostman
Import, configure, run
The collection contains only AI processing, validation, capability, health, and usage workflows.
- 1
Import both JSON filesSelect Scanverion Local in Postman.
- 2
Set your variablesAdd the API key and absolute sample-file paths.
- 3
Run 00 - SetupCheck health first, then verify the key with capabilities.
- 4
Choose a workflowRun Document AI, Vehicle AI, Validation, or Usage.
- baseUrl
https://api.scanverion.com- apiKey
skv_...processing key- sampleDocument
- Absolute PDF or image path
- sampleDocument2
- Second file for batch requests
- sampleVehicle
- Absolute vehicle image path
- fromDate / toDate
YYYY-MM-DDusage period
$env:SCANVERION_API_URL = "https://api.scanverion.com"
$env:SCANVERION_API_KEY = "skv_..."
curl.exe --request POST "$env:SCANVERION_API_URL/api/v1/ai/document-processing" `
--header "Authorization: Bearer $env:SCANVERION_API_KEY" `
--header "Idempotency-Key: first-request-001" `
--form "File=@invoice.pdf;type=application/pdf" `
--form "Operations=Scanner"