Have some fun with our translations. Yoda speak generator, Pirate talk generator, Pig Latin Converter and many many more...all in one simple easy to use API.
For full live API documentation and testing it out please visit https://api.funtranslations.com
https://api.funtranslations.com/translate/
Our translation API is public. To maintain our service level we ratelimit the number of API calls. For public API calls this is 60 API calls a day with distribution of 5 calls an hour. For paid plans this limit is increased according to the service level described in the plan.
For public calls you don't need to pass any API key. Just invoke the endpoint (see examples below). For paid subscriptions you need to pass the API key.
Currently we support API Key based authentication. Please set a request header 'X-FunTranslations-Api-Secret' with value of your API key. Alternatively you can also pass api_key= as a request parameter, though we strongly discourage this mode of passing the key.
To translate from English to yoda use the following API.
Translate from English to yoda.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/yoda.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Master Obiwan has lost a planet." https://api.funtranslations.com/translate/yoda.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "yoda", "text": "Master Obiwan has lost a planet.", "translated": "<translated text>" } }
To translate from English to pirate use the following API.
Translate from English to pirate.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/pirate.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Hello sir! my mother goes with me to the ocean." https://api.funtranslations.com/translate/pirate.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "pirate", "text": "Hello sir! my mother goes with me to the ocean.", "translated": "<translated text>" } }
To translate from English to valspeak use the following API.
Translate from English to valspeak.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/valspeak.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Good Morning. Come on man, just saying!" https://api.funtranslations.com/translate/valspeak.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "valspeak", "text": "Good Morning. Come on man, just saying!", "translated": "<translated text>" } }
To translate from English to minion use the following API.
Translate from English to minion.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/minion.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Hello, I am hungry!" https://api.funtranslations.com/translate/minion.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "minion", "text": "Hello, I am hungry!", "translated": "<translated text>" } }
To translate from English to ferb-latin use the following API.
Translate from English to ferb-latin.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/ferb-latin.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Well, if by that you mean we should create a whole new form of communication, then I couldn't agree more." https://api.funtranslations.com/translate/ferb-latin.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "ferb-latin", "text": "Well, if by that you mean we should create a whole new form of communication, then I couldn't agree more.", "translated": "<translated text>" } }
To translate from English to pig-latin use the following API.
Translate from English to pig-latin.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/pig-latin.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Pig Latin is used in schools to teach language constructs." https://api.funtranslations.com/translate/pig-latin.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "pig-latin", "text": "Pig Latin is used in schools to teach language constructs.", "translated": "<translated text>" } }
To translate from English to dothraki use the following API.
Translate from English to dothraki.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/dothraki.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Have you seen my lady’s dragon?" https://api.funtranslations.com/translate/dothraki.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "dothraki", "text": "Have you seen my lady’s dragon?", "translated": "<translated text>" } }
To translate from English to valyrian use the following API.
Translate from English to valyrian.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/valyrian.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I am Daenerys Stormborn of the House Targaryen, of the blood of Old Valyria. Valyrian is my mother tongue." https://api.funtranslations.com/translate/valyrian.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "valyrian", "text": "I am Daenerys Stormborn of the House Targaryen, of the blood of Old Valyria. Valyrian is my mother tongue.", "translated": "<translated text>" } }
To translate from English to hodor use the following API.
Translate from English to hodor.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/hodor.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I will hold the door for the one eyed raven." https://api.funtranslations.com/translate/hodor.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "hodor", "text": "I will hold the door for the one eyed raven.", "translated": "<translated text>" } }
To translate from English to sindarin use the following API.
Translate from English to sindarin.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/sindarin.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The world is changed; I can feel it in the water, I can feel it in the earth, I can smell it in the air." https://api.funtranslations.com/translate/sindarin.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "sindarin", "text": "The world is changed; I can feel it in the water, I can feel it in the earth, I can smell it in the air.", "translated": "<translated text>" } }
To translate from English to quenya use the following API.
Translate from English to quenya.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/quenya.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I am Arwen - I've come to help you. Hear my voice... Come back to the light." https://api.funtranslations.com/translate/quenya.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "quenya", "text": "I am Arwen - I've come to help you. Hear my voice... Come back to the light.", "translated": "<translated text>" } }
To translate from English to orcish use the following API.
Translate from English to orcish.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/orcish.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Someday I will kill you. Not today." https://api.funtranslations.com/translate/orcish.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "orcish", "text": "Someday I will kill you. Not today.", "translated": "<translated text>" } }
To translate from English to sith use the following API.
Translate from English to sith.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/sith.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I went to coruscant which was ten parsec away!" https://api.funtranslations.com/translate/sith.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "sith", "text": "I went to coruscant which was ten parsec away!", "translated": "<translated text>" } }
To translate from English to cheunh use the following API.
Translate from English to cheunh.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/cheunh.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I went to coruscant which was ten parsec away!" https://api.funtranslations.com/translate/cheunh.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "cheunh", "text": "I went to coruscant which was ten parsec away!", "translated": "<translated text>" } }
To translate from English to gungan use the following API.
Translate from English to gungan.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/gungan.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=You came to my home and I said okay!" https://api.funtranslations.com/translate/gungan.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "gungan", "text": "You came to my home and I said okay!", "translated": "<translated text>" } }
To translate from English to mandalorian use the following API.
Translate from English to mandalorian.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/mandalorian.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I'd like a pint of ale" https://api.funtranslations.com/translate/mandalorian.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "mandalorian", "text": "I'd like a pint of ale", "translated": "<translated text>" } }
To translate from English to huttese use the following API.
Translate from English to huttese.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/huttese.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Did you see the bounty hunter?" https://api.funtranslations.com/translate/huttese.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "huttese", "text": "Did you see the bounty hunter?", "translated": "<translated text>" } }
To translate from English to chef use the following API.
Translate from English to chef.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/chef.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Cooking is fun when you do it with a chef" https://api.funtranslations.com/translate/chef.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "chef", "text": "Cooking is fun when you do it with a chef", "translated": "<translated text>" } }
To translate from English to catalan use the following API.
Translate from English to catalan.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/catalan.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I ran fast towards the abnormal statue and fell down." https://api.funtranslations.com/translate/catalan.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "catalan", "text": "I ran fast towards the abnormal statue and fell down.", "translated": "<translated text>" } }
To translate from English to oldenglish use the following API.
Translate from English to oldenglish.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/oldenglish.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Mr. Tim ate a hearty meal, but unfortunately what he ate made him die." https://api.funtranslations.com/translate/oldenglish.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "oldenglish", "text": "Mr. Tim ate a hearty meal, but unfortunately what he ate made him die.", "translated": "<translated text>" } }
To translate from English to shakespeare use the following API.
Translate from English to shakespeare.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/shakespeare.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=You gave Mr. Tim a hearty meal, but unfortunately what he ate made him die." https://api.funtranslations.com/translate/shakespeare.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "shakespeare", "text": "You gave Mr. Tim a hearty meal, but unfortunately what he ate made him die.", "translated": "<translated text>" } }
To translate from English to vulcan use the following API.
Translate from English to vulcan.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/vulcan.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=May I say that I have not thoroughly enjoyed serving with humans? I find their illogical and foolish emotions a constant irritant." https://api.funtranslations.com/translate/vulcan.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "vulcan", "text": "May I say that I have not thoroughly enjoyed serving with humans? I find their illogical and foolish emotions a constant irritant.", "translated": "<translated text>" } }
To translate from English to klingon use the following API.
Translate from English to klingon.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/klingon.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Who do you work for? They are going to terminate you." https://api.funtranslations.com/translate/klingon.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "klingon", "text": "Who do you work for? They are going to terminate you.", "translated": "<translated text>" } }
To translate from English to romulan use the following API.
Translate from English to romulan.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/romulan.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=May I say that I have not thoroughly enjoyed serving with humans? I find their illogical and foolish emotions a constant irritant." https://api.funtranslations.com/translate/romulan.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "romulan", "text": "May I say that I have not thoroughly enjoyed serving with humans? I find their illogical and foolish emotions a constant irritant.", "translated": "<translated text>" } }
To translate from English to dovahzul use the following API.
Translate from English to dovahzul.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/dovahzul.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The dragon in the skyrim breath fire." https://api.funtranslations.com/translate/dovahzul.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "dovahzul", "text": "The dragon in the skyrim breath fire.", "translated": "<translated text>" } }
To translate from English to thuum use the following API.
Translate from English to thuum.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/thuum.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The dragon in the skyrim breath fire." https://api.funtranslations.com/translate/thuum.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "thuum", "text": "The dragon in the skyrim breath fire.", "translated": "<translated text>" } }
To translate from English to aldmeris use the following API.
Translate from English to aldmeris.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/aldmeris.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The dragon in the skyrim breath fire." https://api.funtranslations.com/translate/aldmeris.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "aldmeris", "text": "The dragon in the skyrim breath fire.", "translated": "<translated text>" } }
To translate from English to groot use the following API.
Translate from English to groot.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/groot.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Rocket hold still. We are going to crash." https://api.funtranslations.com/translate/groot.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "groot", "text": "Rocket hold still. We are going to crash.", "translated": "<translated text>" } }
To translate from English to jive use the following API.
Translate from English to jive.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/jive.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I like the boy across the street!" https://api.funtranslations.com/translate/jive.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "jive", "text": "I like the boy across the street!", "translated": "<translated text>" } }
To translate from English to ebonics use the following API.
Translate from English to ebonics.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/ebonics.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Hi! I like the girl and would like to go to a movie with her!" https://api.funtranslations.com/translate/ebonics.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "ebonics", "text": "Hi! I like the girl and would like to go to a movie with her!", "translated": "<translated text>" } }
To translate from English to dolan use the following API.
Translate from English to dolan.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/dolan.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I have to give a presentation to people." https://api.funtranslations.com/translate/dolan.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "dolan", "text": "I have to give a presentation to people.", "translated": "<translated text>" } }
To translate from English to fudd use the following API.
Translate from English to fudd.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/fudd.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Be very very quiet. I am hunting rabbits." https://api.funtranslations.com/translate/fudd.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "fudd", "text": "Be very very quiet. I am hunting rabbits.", "translated": "<translated text>" } }
To translate from English to kraut use the following API.
Translate from English to kraut.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/kraut.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Germany is a country where lots of cars are made with high quality with poor aesthetics." https://api.funtranslations.com/translate/kraut.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "kraut", "text": "Germany is a country where lots of cars are made with high quality with poor aesthetics.", "translated": "<translated text>" } }
To translate from English to wow use the following API.
Translate from English to wow.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/wow.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Four horsemen went to arathi basin." https://api.funtranslations.com/translate/wow.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "wow", "text": "Four horsemen went to arathi basin.", "translated": "<translated text>" } }
To translate from English to cockney use the following API.
Translate from English to cockney.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/cockney.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I'm little busy with the bike, but I love to eat the food." https://api.funtranslations.com/translate/cockney.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "cockney", "text": "I'm little busy with the bike, but I love to eat the food.", "translated": "<translated text>" } }
To translate from English to norfolk use the following API.
Translate from English to norfolk.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/norfolk.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I'm little busy with the bike." https://api.funtranslations.com/translate/norfolk.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "norfolk", "text": "I'm little busy with the bike.", "translated": "<translated text>" } }
To translate from English to morse use the following API.
Translate from English to morse.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/morse.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Morse code is a dit and dah" https://api.funtranslations.com/translate/morse.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "morse", "text": "Morse code is a dit and dah", "translated": "<translated text>" } }
To translate from English to us2uk use the following API.
Translate from English to us2uk.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/us2uk.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=He agonized over the aging armored cars." https://api.funtranslations.com/translate/us2uk.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "us2uk", "text": "He agonized over the aging armored cars.", "translated": "<translated text>" } }
To translate from English to uk2us use the following API.
Translate from English to uk2us.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/uk2us.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The artefacts of the behavioural elements cancelled the commercialised monotone." https://api.funtranslations.com/translate/uk2us.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "uk2us", "text": "The artefacts of the behavioural elements cancelled the commercialised monotone.", "translated": "<translated text>" } }
To translate from English to leetspeak use the following API.
Translate from English to leetspeak.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/leetspeak.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Where this is lots of love there is lots of fighting." https://api.funtranslations.com/translate/leetspeak.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "leetspeak", "text": "Where this is lots of love there is lots of fighting.", "translated": "<translated text>" } }
To translate from English to brooklyn use the following API.
Translate from English to brooklyn.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/brooklyn.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Where this is lots of love there is lots of fighting." https://api.funtranslations.com/translate/brooklyn.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "brooklyn", "text": "Where this is lots of love there is lots of fighting.", "translated": "<translated text>" } }
To translate from English to ermahgerd use the following API.
Translate from English to ermahgerd.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/ermahgerd.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Oh my god! This is giving me goosebumps!" https://api.funtranslations.com/translate/ermahgerd.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "ermahgerd", "text": "Oh my god! This is giving me goosebumps!", "translated": "<translated text>" } }
To translate from English to australian use the following API.
Translate from English to australian.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/australian.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I went to Australian and the cheap wine made me crave for McDonald's burgers." https://api.funtranslations.com/translate/australian.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "australian", "text": "I went to Australian and the cheap wine made me crave for McDonald's burgers.", "translated": "<translated text>" } }
To translate from English to boston use the following API.
Translate from English to boston.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/boston.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=My shopping cart was hit by an automobile and a police car stopped by." https://api.funtranslations.com/translate/boston.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "boston", "text": "My shopping cart was hit by an automobile and a police car stopped by.", "translated": "<translated text>" } }
To translate from English to austrian use the following API.
Translate from English to austrian.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/austrian.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The result is not what you want without breakfast." https://api.funtranslations.com/translate/austrian.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "austrian", "text": "The result is not what you want without breakfast.", "translated": "<translated text>" } }
To translate from English to article_rewrite use the following API.
Translate from English to article_rewrite.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/article_rewrite.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The result may not be in a polished state." https://api.funtranslations.com/translate/article_rewrite.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "article_rewrite", "text": "The result may not be in a polished state.", "translated": "<translated text>" } }
To translate from English to braille use the following API.
Translate from English to braille.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/braille.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Fun Translations has something for everyone." https://api.funtranslations.com/translate/braille.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "braille", "text": "Fun Translations has something for everyone.", "translated": "<translated text>" } }
To translate from English to numbers use the following API.
Translate from English to numbers.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/numbers.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=238799087" https://api.funtranslations.com/translate/numbers.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "numbers", "text": "238799087", "translated": "<translated text>" } }
To translate from English to emoji use the following API.
Translate from English to emoji.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/emoji.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Apple is great fruit fries are yummy when you are in the car" https://api.funtranslations.com/translate/emoji.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "emoji", "text": "Apple is great fruit fries are yummy when you are in the car", "translated": "<translated text>" } }
To translate from English to doge use the following API.
Translate from English to doge.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/doge.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I want to play fetch." https://api.funtranslations.com/translate/doge.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "doge", "text": "I want to play fetch.", "translated": "<translated text>" } }
To translate from English to southern-accent use the following API.
Translate from English to southern-accent.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/southern-accent.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=How are you? Did the dog catch the bunny?" https://api.funtranslations.com/translate/southern-accent.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "southern-accent", "text": "How are you? Did the dog catch the bunny?", "translated": "<translated text>" } }
To translate from English to ubbi-dubbi use the following API.
Translate from English to ubbi-dubbi.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/ubbi-dubbi.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The signature speech pattern of the cartoon character Mushmouth from the animated series Fat Albert and the Cosby Kids is Ubbi Dubbi." https://api.funtranslations.com/translate/ubbi-dubbi.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "ubbi-dubbi", "text": "The signature speech pattern of the cartoon character Mushmouth from the animated series Fat Albert and the Cosby Kids is Ubbi Dubbi.", "translated": "<translated text>" } }
To translate from English to inflationary-english use the following API.
Translate from English to inflationary-english.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/inflationary-english.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I won in the tennis game using my forehand play." https://api.funtranslations.com/translate/inflationary-english.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "inflationary-english", "text": "I won in the tennis game using my forehand play.", "translated": "<translated text>" } }
To translate from English to george-bush-dubya use the following API.
Translate from English to george-bush-dubya.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/george-bush-dubya.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=We never misunderstand the unjustified aggression of Syria. We will overthrow Iraq government with diplomacy. " https://api.funtranslations.com/translate/george-bush-dubya.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "george-bush-dubya", "text": "We never misunderstand the unjustified aggression of Syria. We will overthrow Iraq government with diplomacy. ", "translated": "<translated text>" } }
To translate from English to post-modern use the following API.
Translate from English to post-modern.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/post-modern.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I had an egg for breakfast and it was good." https://api.funtranslations.com/translate/post-modern.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "post-modern", "text": "I had an egg for breakfast and it was good.", "translated": "<translated text>" } }
To translate from English to ayleidoon use the following API.
Translate from English to ayleidoon.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/ayleidoon.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The dragon in the skyrim breath fire." https://api.funtranslations.com/translate/ayleidoon.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "ayleidoon", "text": "The dragon in the skyrim breath fire.", "translated": "<translated text>" } }
To translate from English to redneck use the following API.
Translate from English to redneck.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/redneck.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I have gone for hunting and got some rabbits." https://api.funtranslations.com/translate/redneck.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "redneck", "text": "I have gone for hunting and got some rabbits.", "translated": "<translated text>" } }
To translate from English to roman-numerals use the following API.
Translate from English to roman-numerals.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/roman-numerals.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=238799087" https://api.funtranslations.com/translate/roman-numerals.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "roman-numerals", "text": "238799087", "translated": "<translated text>" } }
To translate from English to asian-accent use the following API.
Translate from English to asian-accent.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/asian-accent.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Anybody could run to the factory straight to do this." https://api.funtranslations.com/translate/asian-accent.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "asian-accent", "text": "Anybody could run to the factory straight to do this.", "translated": "<translated text>" } }
To translate from English to russian-accent use the following API.
Translate from English to russian-accent.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/russian-accent.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Coding is very russian and you can read it with code editors." https://api.funtranslations.com/translate/russian-accent.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "russian-accent", "text": "Coding is very russian and you can read it with code editors.", "translated": "<translated text>" } }
To translate from English to english-contraction use the following API.
Translate from English to english-contraction.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/english-contraction.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=I'll do what he can't do but you shouldn't tell anyone about it" https://api.funtranslations.com/translate/english-contraction.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "english-contraction", "text": "I'll do what he can't do but you shouldn't tell anyone about it", "translated": "<translated text>" } }
To translate from English to irish use the following API.
Translate from English to irish.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/irish.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Listen to Irishmen and learn. The best way to learn any accent is to observe and imitate it. Find speakers with the accent, or look for authentic examples of it in movies or audio recordings." https://api.funtranslations.com/translate/irish.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "irish", "text": "Listen to Irishmen and learn. The best way to learn any accent is to observe and imitate it. Find speakers with the accent, or look for authentic examples of it in movies or audio recordings.", "translated": "<translated text>" } }
To translate from English to british use the following API.
Translate from English to british.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/british.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=While I visited my American friend who live in the apartment I had to change the diaper of my kid and throw it in trash after he ate lot of cookies. " https://api.funtranslations.com/translate/british.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "british", "text": "While I visited my American friend who live in the apartment I had to change the diaper of my kid and throw it in trash after he ate lot of cookies. ", "translated": "<translated text>" } }
To translate from English to german-accent use the following API.
Translate from English to german-accent.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/german-accent.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Germany is a country where lots of cars are made with high quality with poor aesthetics." https://api.funtranslations.com/translate/german-accent.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "german-accent", "text": "Germany is a country where lots of cars are made with high quality with poor aesthetics.", "translated": "<translated text>" } }
To translate from English to draconic use the following API.
Translate from English to draconic.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/draconic.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=The dragon in the skyrim breath fire." https://api.funtranslations.com/translate/draconic.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "draconic", "text": "The dragon in the skyrim breath fire.", "translated": "<translated text>" } }
To translate from English to enderman use the following API.
Translate from English to enderman.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/enderman.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Minecraft is awesome!" https://api.funtranslations.com/translate/enderman.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "enderman", "text": "Minecraft is awesome!", "translated": "<translated text>" } }
To translate from English to wheel-of-time-old-tongue use the following API.
Translate from English to wheel-of-time-old-tongue.
ParametersParameter Name | Parameter Type | Description |
---|---|---|
text | string | Text to translate. |
Here is the full url to use.
https://api.funtranslations.com/translate/wheel-of-time-old-tongue.json
Here is an example using your browser to convert the given text. Click on the below link to get the json response for the text.
Here is an example using CURL to convert the given text.
curl -v -i -X POST -H 'X-Funtranslations-Api-Secret: <api_key>' -d "text=Time to roll the dice" https://api.funtranslations.com/translate/wheel-of-time-old-tongue.json
The above call if successful will return a json response something like this.
{ "success": { "total": 1 }, "contents": { "translation": "wheel-of-time-old-tongue", "text": "Time to roll the dice", "translated": "<translated text>" } }