> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unrealapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Translate

<Warning>This is a Unreal API+ only request</Warning>

`POST` `/translate`

Translate any language back to English

## Headers

| Name   | Value                |
| ------ | -------------------- |
| apikey | 28-Character API Key |

## Body

| Name | Type     | Description       |
| ---- | -------- | ----------------- |
| text | string\* | text to translate |

## Response

<Tabs>
  <Tab title="200: OK">
    ```json theme={null}
    {
      "original": "Hola, ¿cómo estás?",
      "translated": "Hello, how are you?",
      "target": "en"
    }
    ```
  </Tab>

  <Tab title="400: Bad Request">
    **Error**\
    You didn't provide a valid:

    * text

    Check `response.error`
  </Tab>

  <Tab title="401: Unauthorized">
    **Error**\
    Missing or invalid apikey.
  </Tab>

  <Tab title="429: Too Many Requests">
    You sent too many requests too quickly. Try again later.
    This also happens when the AI rate limits.
  </Tab>
</Tabs>
