PLATFORM UPDATE

CONVERTCRAFT V3.0 THE NEXT GENERATION

WASM-powered architecture executing hyper-fast operations securely in your browser. Absolute privacy, absolute performance.

Why ConvertCraft

  • WASM Powered: Every conversion runs locally on your hardware.
  • Absolute Privacy: We run ads to help pay server costs — thank you for understanding. Please enable cookies to support us.
  • Built for You: We listen, adapt, and evolve our toolkit based on real user feedback.

Our Mission 🛡️

We believe powerful digital tools should be accessible to everyone, everywhere — without compromise.

That is why ConvertCraft is and always will be community-supported, privacy-first, and blazing fast.

5x FasterZero SwitchInstant Load100% PrivacyFully Stable

❤️ Support ConvertCraft

Support the ProjectJoin Discord

Every dollar helps us maintain servers and build new tools.

Documentación de la API de ConvertCraft

Integra las capacidades de conversión de archivos de ConvertCraft en tus aplicaciones a través de nuestra API REST. Procesa imágenes, PDF, audio, video y texto a través de solicitudes HTTP simples.

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

Autenticación

Punto de acceso más común (no requiere autenticación). Para límites de tasa más altos o características avanzadas, suscripción a través de RapidAPI recibe una clave API.

Comenzar (RapidAPI)

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

Categorías de Endpoint

The API provides endpoints grouped by conversion type:

  • Procesamiento de ImágenesConvert, resize, and optimize images (JPG, PNG, WebP, AVIF, HEIC, SVG, GIF, TIFF, BMP, ICO)
  • Herramientas de PDFConvert, merge, split, compress, and rasterize PDFs
  • Herramientas de AudioConvert between MP3, WAV, OGG, AAC, FLAC, M4A formats
  • Herramientas de VideoConvert MP4, WebM, MKV, MOV, AVI, extract audio from video
  • Herramientas de TextoSlugify, hash, encode/decode, and other text operations
  • Herramientas de CryptoHashing, encoding, and cryptographic utilities
  • SistemaHealth check, status, and API metadata

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

Límites de Tasa

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

Endpoint públicos se limitan por IP. Los suscriptores a través de RapidAPI reciben límites más altos.

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.