Free Multi-Language Address Translation API
211 languages with 44,310 translation combinations available - Another Level Technology
const translateAddress = async (address) => {
const response = await fetch('https://wiaaddress.com/api/korean-to-english.php', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ address })
});
const data = await response.json();
console.log(data.translated);
};
import requests
url = "https://wiaaddress.com/api/korean-to-english.php"
payload = {"address": "서울시 강남구 테헤란로 313"}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
data = response.json()
print(data["translated"])
$url = "https://wiaaddress.com/api/korean-to-english.php";
$data = array("address" => "서울시 강남구 테헤란로 313");
$options = array(
"http" => array(
"header" => "Content-Type: application/json\r\n",
"method" => "POST",
"content" => json_encode($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
$response = json_decode($result, true);
echo $response["translated"];
WIA Code is a unique location identifier generated from GPS coordinates. Format: CC-XXXX-YYYY
Each WIA Code represents a unique location with precision up to 11cm.
For higher limits or commercial use, please contact us.
Upgrade for more requests, priority support, and no ads!
🏢 Need Enterprise solution?
Contact Sales →We use Stripe for secure payment processing. All plans include:
Upgrade for more requests, priority support, and no ads!
🏢 Need Enterprise solution?
Contact Sales →We use Stripe for secure payment processing. All plans include:
The API returns appropriate HTTP status codes and error messages:
| Status Code | Description |
|---|---|
200 |
Success |
400 |
Bad Request - Missing or invalid parameters |
429 |
Too Many Requests - Rate limit exceeded |
500 |
Internal Server Error |
{
"success": false,
"error": "No address provided"
}
Need help or have questions?