Next-Gen AI Generation

AI Smart Address
Generator

Generate ultra-realistic, context-aware shipping addresses for 100+ countries using private OpenAI models. Perfect for testing global logistics logic.

Country
Quantity (AI)

AI Ready for Launch

Choose a country and click generate to see the power of LLM-based address synthesis. Real ZIP codes, real districts, real logic.

Secure Backend Integration

Never Expose Your
OpenAI API Key

Built for software engineers, this tool uses a secure server-side proxy. Your secret key is stored as an environment variable and never reaches the browser.

PHP Integration

Simply `curl` the internal endpoint from your PHP software.

JSON Output

Returns clean, standardized JSON ready for DB seeding.

API Documentation

Endpoint
GET /api/tools/mock-address/ai?country_code=US&qty=5
PHP Example
// In your PHP code
$url = "https://shipi.com/api/tools/mock-address/ai?country_code=DE&qty=3";
$res = file_get_contents($url);
$data = json_decode($res, true);

foreach($data['data'] as $addr) {
  echo $addr['street'];
}