Name: {name}
Translator since: {translator_since}
From: {from}
Collaboration with you: {collaboration}
{about}
{fieldofexpertise}
 {name}

Nativy Connect

nativy translations
Description

Returns all active languages from nativy. Use this URL to show the possible from/to language combinations to your user in your application (e.g. in a dropdown).

Each combination of these languages is possible to request.
If a combination is not available at nativy at this time, /order POST will return an empty (null) ranking array. The user will be informed by e-mail from nativy as soon as nativy has found available translators for this language combination.
URL /connect/languages

Parameters
language_short (required) string The language key which determines in which language you want to retrieve the language names (e.g. de for german, en for english)

Example call

                $url = 'http://www.nativytest.com/connect/languages';
	            $url = $url . '?language_short=en';
	        
	            $ch = curl_init($url); 
	        
	            curl_setopt($ch, CURLOPT_URL, $url); 
	            curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
	            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
	            $response = curl_exec($ch);
	            curl_close($ch);

        	    echo ($response);
            

Return parameters

language_long  string The language name in the language you provided with the "language_short" parameter before.
language_short  string The short language name of the language. Use these as "language_from" and "language_to" values when posting an order (see /order POST).

Example return values

            [
            {"language_long":"Afrikaans","language_short":"af"},
            {"language_long":"Arabic","language_short":"ar"},
            {"language_long":"Bulgarian","language_short":"bg"},
            {"language_long":"Bengali","language_short":"bn"},
            {"language_long":"Bosnian","language_short":"bs"},
            {"language_long":"Catalan","language_short":"ca"},
            {"language_long":"Czech","language_short":"cs"},
            {"language_long":"Welsh","language_short":"cy"},
            {"language_long":"Danish","language_short":"da"},
            {"language_long":"German","language_short":"de"},
            {"language_long":"Greek","language_short":"el"},
            {"language_long":"English","language_short":"en"},

            ...

            {"language_long":"Slovenian","language_short":"sl"},
            {"language_long":"Albanian","language_short":"sq"},
            {"language_long":"Serbian","language_short":"sr"},
            {"language_long":"Swedish","language_short":"sv"},
            {"language_long":"Tamil","language_short":"ta"},
            {"language_long":"Telugu","language_short":"te"},
            {"language_long":"Turkish","language_short":"tr"},
            {"language_long":"Ukrainian","language_short":"uk"},
            {"language_long":"Urdu","language_short":"ur"},
            {"language_long":"Vietnamese","language_short":"vi"},
            {"language_long":"Chinese","language_short":"zh"}
            ]