Translate

Flat per-call pricing. Send a tweet or a contract for the same credit.

POST /v1/translate 1 credit Utilities

Translate UGC, support tickets, or scraped pages into any of 28 languages. We don't charge per character: one call, one credit, whether you send a tweet or a contract.

The hard part

Per-character pricing is fine until your users paste a contract or a long thread, and suddenly one record costs more than a hundred others combined. A flat per-call price means your translation line item scales with usage, not with how long the strings are.

What it does

  • 28 source/target languages, `source="auto"` for detection.
  • Flat 1 credit per call. Predictable cost on big texts.
  • Returns detected source language alongside the translation.

Send a call

curl -X POST https://scrapenest.dev/v1/translate \
  -H "Authorization: Bearer sn_••••" \
  -H "Content-Type: application/json" \
  -d '{ "text": "Hello, world", "target": "ja" }'

Request body

{
  "text": "Estoy buscando un buen restaurante de tapas cerca de la Plaza Mayor",
  "target": "en",
  "source": "auto"
}

Response shape

{
  "translated": "I am looking for a good tapas restaurant near Plaza Mayor",
  "detected_source": "es",
  "target": "en",
  "credits_charged": 1
}

What it costs

1 credit per call regardless of length. No per-character or per-word fee.