CONVERTTRFT V3.0:下一代

Pre. 二等兵,請進 純性能.

經驗分2s處理速度與我們全新的V3.0引擎. 我們已經重建了一切 以給你一個Prime體驗 你的文檔永遠不會離開你的設備。

爲什麼我們不同:

  • 布蘭德0... 動力: WASM 每一個轉換都在你的硬件上運行
  • 絕對隱私: 你的檔案是你的 沒有云,沒有跟蹤,沒有妥協。
  • 爲您所建: 我們爲全球的創造者社區 做了一個完全自費的平臺。

保持使命還活着: 🛡️

如此規模的基礎設施的運行需要大量資金。 我們不賣你的數據 也不賣煩人的廣告 我們只依靠像你這樣的用戶

如果...... 拯救你的時間或保存你的數據 今天,幫助我們保持它的自由 和隱私爲每個人。 ConvertCraft

[速度:即時][開關:<100ms][ 加載:<2 秒 ]隱私:100%所有系统正常运行

❤️ 支持我們的任務/捐贈

💎 支持使命($4.99/月)☕ 一次性捐贈

每一美元就讓1000個用戶保持私人狀態.

ConvertCraft API 文档

通过 REST API 将 ConvertCraft 的文件转换能力集成到您的应用程序中。 通过简单的 HTTP 请求处理图像、PDF、音频、视频和文本。

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

身份验证

大部分端点是公开的,无需身份验证。 对于更高的速率限制或高级功能,请通过 RapidAPI 订阅以获得 API 密钥。

快速启动 (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

端点类别

The API provides endpoints grouped by conversion type:

  • 图像处理Convert, resize, and optimize images (JPG, PNG, WebP, AVIF, HEIC, SVG, GIF, TIFF, BMP, ICO)
  • PDF 工具Convert, merge, split, compress, and rasterize PDFs
  • 音频工具Convert between MP3, WAV, OGG, AAC, FLAC, M4A formats
  • 视频工具Convert MP4, WebM, MKV, MOV, AVI, extract audio from video
  • 文本工具Slugify, hash, encode/decode, and other text operations
  • 加密工具Hashing, encoding, and cryptographic utilities
  • 系统Health check, status, and API metadata

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

速率限制

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

公共端点每IP限制速率。订阅者通过RapidAPI获得更高的速率限制。

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.