KONVERTCRAFT V3.0: Die NEXT-Generation

Premium. Privat. Reine Leistung.

Erleben Sie Sub-2s Verarbeitungsgeschwindigkeiten mit unserem brandneuen V3.0 Motor. Wir haben alles wieder aufgebaut, um Ihnen eine Prime Experience zu geben, wo Ihre Dateien nie Ihr Gerät verlassen.

Was haben wir anders:

  • WASM-basiert: Jede Konvertierung läuft lokal auf Ihrer Hardware.
  • Datenschutz: Deine Dateien sind deine. Keine Cloud, kein Tracking, keine Kompromisse.
  • Für Sie gebaut: Wir haben diese Plattform für eine globale Schöpfergemeinschaft komplett ausgenutzt.

KEEP THE Mission Alive: 🛡️

Diese Infrastruktur in dieser Größenordnung zu betreiben, kostet ernsthaftes Geld. Wir verkaufen Ihre Daten nicht, und wir führen keine störenden Anzeigen aus. Wir verlassen uns ausschließlich auf Nutzer wie Sie.

Wenn Sie heute Zeit gespeichert oder Ihre Daten sicher aufbewahrt haben, helfen Sie uns, es für jeden frei und privat zu halten. ConvertCraft

(Geschwindigkeit)[ Schalter: <100ms][ LOAD: <2 SEC]Datenschutz: 100%Alle Systeme funktionieren

❤️ Unterstützung unserer Mission / Spenden

💎 Unterstützung der Mission ($4.99/mo)Eine einmalige Spende

Jeder Dollar hält weitere 1.000 Benutzer privat.

ConvertCraft API-Dokumentation

Ersetzen Sie die Dateiverarbeitungsmöglichkeiten von ConvertCraft in Ihren Anwendungen durch unsere REST-API. Verarbeiten Sie Bilder, PDFs, Audio, Video und Text mit einfachen HTTP-Anfragen.

Base URL: https://api.convert-craft.com
OpenAPI spec: /openapi.yaml
RapidAPI: Subscribe on RapidAPI the fastest way to get started.
Need help? Join our Discord

Authentifizierung

Die meisten Endpunkte sind öffentlich und erfordern keine Authentifizierung. Für höhere Durchsatzlimits oder fortgeschrittene Funktionen, subscribieren Sie über RapidAPI, um eine API-Schlüssel zu erhalten.

Starten Sie mit RapidAPI (Tutorial)

Subscribe on RapidAPI and use RapidAPI's built-in code snippets. The examples below are copy/paste templates — replace YOUR_API_KEY and YOUR_PROXY_SECRET with the values shown in RapidAPI.

1) Health check (GET /status)

curl -s \
  -H "x-api-key: YOUR_API_KEY" \
  -H "x-rapidapi-proxy-secret: YOUR_PROXY_SECRET" \
  https://api.convert-craft.com/status

2) Simple JSON tool (POST /slugify)

curl -s -X POST \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "x-rapidapi-proxy-secret: YOUR_PROXY_SECRET" \
  -d '{"text":"Hello World!"}' \
  https://api.convert-craft.com/slugify

3) File tool example (POST /image-convert)

File endpoints download from the sourceUrl field. Use a direct URL that returns HTTP 200 (this API intentionally does not follow redirects).

curl -s -X POST \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -H "x-rapidapi-proxy-secret: YOUR_PROXY_SECRET" \
  -d '{"sourceUrl":"https://example.com/photo.png","outputFormat":"webp"}' \
  https://api.convert-craft.com/image-convert \
  --output photo.webp

Endpunktkategorien

The API provides endpoints grouped by conversion type:

  • BildverarbeitungConvert, resize, and optimize images (JPG, PNG, WebP, AVIF, HEIC, SVG, GIF, TIFF, BMP, ICO)
  • PDF-ToolsConvert, merge, split, compress, and rasterize PDFs
  • Audio-ToolsConvert between MP3, WAV, OGG, AAC, FLAC, M4A formats
  • Video-ToolsConvert MP4, WebM, MKV, MOV, AVI, extract audio from video
  • Text-UtilitiesSlugify, hash, encode/decode, and other text operations
  • Crypto-ToolsHashing, encoding, and cryptographic utilities
  • SystemHealth check, status, and API metadata

For the full list of endpoints with request/response schemas, see the OpenAPI spec.

Rate-Limits

  • Free tier: 10 requests per minute
  • Pro tier: 100 requests per minute
  • Enterprise: Custom limits available on request

Public-Endpoints sind pro IP rate-begrenzt. Abonnenten über RapidAPI erhalten höhere Limits.

Error Handling

All errors return JSON with a consistent structure:

{
  "error": "short_code",
  "message": "Human-readable description"
}

Common HTTP status codes:

  • 400Bad request (missing or invalid parameters)
  • 401Unauthorized (missing or invalid API key)
  • 403Forbidden (invalid proxy secret or insufficient permissions)
  • 429Rate limit exceeded
  • 500Internal server error

Support

For API questions, bug reports, or feature requests, email [email protected] or join our Discord community.