AI Translate API • Live on Bitcoin mainnet

Translate with better phrasing, not just literal output.

AI Translate is the premium translation option on ArkAPI. It is meant for cases where the cheap utility translator is too literal and you want more natural wording, better sentence flow, or a more polished result.

25 sats / call
POST /api/ai-translate
Styles: literal, natural, polished

What It Does

ArkAPI AI Translate uses the managed AI backend to produce higher-quality translations than the standard utility endpoint. It keeps the request simple but gives you style control when tone and readability matter. If you only need cheap workflow translation, the regular Translate API is still the faster low-cost option.

When To Use It

Choose /api/ai-translate when translation quality matters more than minimum cost. If you just need fast utility conversion for a workflow, /api/translate is still the cheaper default.

Example Request

curl -X POST https://arkapi.dev/api/ai-translate \ -H "Authorization: Bearer ak_your_token" \ -H "Content-Type: application/json" \ -d '{"text":"Sous les etoiles, la riviere chante doucement.","target_language":"en","style":"natural"}' | jq

Example Response

{ "success": true, "data": { "text": "Sous les etoiles, la riviere chante doucement.", "translated_text": "Under the stars, the river sings softly.", "target_language": "en", "source_language": "fr", "detected_language": "fr", "style": "natural", "model": "arkapi-translate-v1" }, "cost_sats": 25, "endpoint": "/api/ai-translate" }

Discovery