ConvertCraft API Belgeleri
REST API aracılığıyla ConvertCraft'ın dosya dönüştürme yeteneklerini uygulamalarınıza dahil edin. Resimler, PDF'ler, ses, video ve metin gibi dosyaları basit HTTP istekleri aracılığıyla işleyin.
https://api.convert-craft.comOpenAPI spec: /openapi.yaml
RapidAPI: Subscribe on RapidAPI — the fastest way to get started.
Need help? Join our Discord
Kimlik Doğrulama
En çok endpointler kamuya açık ve kimlik doğrulama gerektirmez. Daha yüksek hız sınırları veya gelişmiş özellikler için, RapidAPI'ye kaydolun ve API anahtarını alarak API key'inizi alın.
Başlangıç (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/status2) 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/slugify3) 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.webpEndpoint Kategorileri
The API provides endpoints grouped by conversion type:
- Görüntü İşleme — Convert, resize, and optimize images (JPG, PNG, WebP, AVIF, HEIC, SVG, GIF, TIFF, BMP, ICO)
- PDF Araçları — Convert, merge, split, compress, and rasterize PDFs
- Ses Araçları — Convert between MP3, WAV, OGG, AAC, FLAC, M4A formats
- Video Araçları — Convert MP4, WebM, MKV, MOV, AVI, extract audio from video
- Metin Araçları — Slugify, hash, encode/decode, and other text operations
- Kripto Araçları — Hashing, encoding, and cryptographic utilities
- Sistem — Health check, status, and API metadata
For the full list of endpoints with request/response schemas, see the OpenAPI spec.
Öncelik Sınırları
- Free tier: 10 requests per minute
- Pro tier: 100 requests per minute
- Enterprise: Custom limits available on request
Herkese açıkEndpoints, her IP için her zaman sınırlıdır. RapidAPI aboneleri, daha yüksek sınırlamalar elde eder.
Error Handling
All errors return JSON with a consistent structure:
{
"error": "short_code",
"message": "Human-readable description"
}Common HTTP status codes:
- 400 — Bad request (missing or invalid parameters)
- 401 — Unauthorized (missing or invalid API key)
- 403 — Forbidden (invalid proxy secret or insufficient permissions)
- 429 — Rate limit exceeded
- 500 — Internal server error
Support
For API questions, bug reports, or feature requests, email [email protected] or join our Discord community.