Diese Dokumentation richtet sich an Entwickler, die die Telden API oder den MCP-Server integrieren möchten. Allgemeine Hilfe für Verkäufer und Händler finden Sie im Arbeitsbereich unter „Einstellungen“ und in den einzelnen Produkt-Dossiers.
Diese Dokumentation ist derzeit nur auf Englisch verfügbar.
Erste Schritte
Schnellstart-Anleitung
2. Erste API-Anfrage stellen
Probieren Sie den Health-Endpoint (ohne Authentifizierung) oder listen Sie Ihre SKUs mit Ihrem API-Schlüssel:
curl https://telden.eu/api/healthcurl https://telden.eu/api/skus \
-H "Authorization: Bearer YOUR_API_KEY"3. KI-Agenten konfigurieren
Binden Sie Telden als MCP-Server für Claude Desktop, Cursor oder jeden MCP-kompatiblen Agenten ein:
{
"mcpServers": {
"telden": {
"url": "https://telden.eu/api/mcp",
"headers": {
"Authorization": "Bearer ${TELDEN_ACCESS_TOKEN}"
}
}
}
}Ihr API-Schlüssel ist workspace-bezogen. Verwenden Sie das Bearer-Token im Authorization-Header für alle authentifizierten Endpunkte. Ihre Workspace-ID finden Sie oben auf der Einstellungsseite unter „Workspace“.
Produktinformationen
Verfügbare Endpunkte
26 stabile und 15 Preview-Operationen aus dem öffentlichen OpenAPI-Vertrag.
Stabile Endpunkte
/api/healthPublic liveness probe. No authentication required./api/health/emailStaff-only email readiness probe (Brevo SMTP). Requires staff authentication./api/skusList SKUs for the current workspace./api/skusCreate a SKU in the current workspace. Supports dry_run and Idempotency-Key./api/skus/{id}Get a SKU with agent-readable blocker and capability flags./api/skus/{id}Delete a SKU and related records in the current workspace./api/skus/{id}/documentsList documents linked to a SKU (legacy sku_id column and document_sku join)./api/skus/{id}/dossier.zipDownload one SKU dossier PDF together with all attached documents as a ZIP archive./api/skus/{id}/exportExport one SKU as JSON or CSV. Bearer auth requires the `export` scope (paid/enterprise plans)./api/skus/{id}/fields/{fieldId}/sync-from-entityCopy the current confirmed linked entity value into a dossier field. Supports dry_run and Idempotency-Key./api/skus/{id}/review/completeMark a SKU review as complete after all issues and extraction conflicts are resolved./api/importsList recent import batches for the current workspace./api/imports/{batchId}Get one import batch summary./api/importUpload and process a CSV, TSV, XLSX, XLS, or ODS SKU import./api/workspace/api-keysList active workspace API keys./api/workspace/api-keysCreate a workspace API key./api/workspace/api-keys/{id}Revoke a workspace API key./api/workspace/api-keys/{id}Rotate a workspace API key (revoke old key and create a new one)./api/v1/skusList workspace SKUs via Bearer-token auth. Requires API key with skus:read scope./api/skus/{id}/ai-fillTrigger AI fill for a SKU's missing dossier fields. Creates a background job and returns immediately. AI suggestions require human review and are never auto-approved for compliance output./api/skus/{id}/ai-fill/jobPoll the latest AI-fill job status for a SKU./api/skus/{id}/ai-fill/cancelCancel a running AI-fill job (pending or processing)./api/supplier-email/draftGenerate a supplier outreach email draft for missing compliance documents./api/supplier-email/sendSend a supplier outreach email via workspace SMTP./api/supplier-email/requestsList sent supplier email requests for a SKU./api/supplier-email/requests/{id}Update supplier email request status.Preview-Endpunkte
Preview-Routen sind in OpenAPI dokumentiert, aber noch keine Kompatibilitätszusage.
/api/mcpMCP server info and health check (WebStandardStreamableHTTP transport)./api/mcpCall the read-only Telden MCP server./api/classifyClassify a file as product CSV, compliance document, or other./api/classify/containersExpand supported containers (.zip, .eml, RFC 2822 .msg) and classify each extracted part. Nested .zip/.eml recurse up to recursion_limit (3); encrypted archives, opaque .p7m, and Outlook compound .msg return skipped diagnostics./api/documents/bulkUpload up to 20 compliance documents in one multipart batch./api/upload/orchestrateRecord upload orchestration audit events for classified files./api/imports/{batchId}/reviewGet post-import batch review workbench payload for imported SKUs, suggestions, and provenance./api/imports/{batchId}/entity-resolutionValidate and persist linked-entity resolution decisions for an import batch./api/import/from-urlPreview a product import from a public shop or catalog URL./api/v1/skus/{id}/re-extractTrigger re-extraction of a SKU's linked documents via Bearer-token auth. Requires API key with extractions:write scope./api/v1/documents/{id}/re-extractTrigger re-extraction of a document via Bearer-token auth. Requires API key with extractions:write scope./api/research/productResearch missing product data from public sources and return cited suggestions only./api/exportsList past export runs for the current workspace./api/exportsTrigger a new export run with a chosen template and scope./api/exports/templatesList available export templates for the current workspace.Vollständige Spezifikation unter /docs/api · /api/openapi.json