cilik means "small" in Indonesian β just like your links! Turn long URLs into tiny, easy-to-share short links instantly. No signup required.
Paste your long URL below and instantly generate a short one.
Just paste your long URL, click generate, and get a short link instantly.
No sign-up required. Shorten unlimited links completely free.
Perfect for WhatsApp, social media, SMS, or email campaigns.
Copy your long link and paste it into the box above.
Our system creates a short unique link for you.
Get your new short URL instantly, ready to share.
Use it in chats, emails, or social media posts.
Integrate Cilik.in into your apps or websites with our REST API. Use your API key to create short URLs programmatically with a simple POST request.
POST https://cilik.in/api.php
Include your api_key
in the request body and pass it as an Authorization
header:
{ "long_url": "https://example.com/some/very/long/link" }
{ "status": "success", "short_url": "https://cilik.in/r/a1B2c" }
You can now embed short_url
anywhere in your website or mobile app. A redirect handler /r/[code]
ensures fast, safe redirection.
Keep your api_key
private β do not share it publicly.
curl --location 'https://cilik.in/api.php' \ --header 'Content-Type: application/json' \ --header 'Authorization: YOUR_API_KEY_HERE' \ --data '{ "long_url": "https://example.com/some/very/long/link" }'
fetch("https://cilik.in/api.php", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "YOUR_API_KEY_HERE" }, body: JSON.stringify({ long_url: "https://example.com/some/very/long/link" }) }) .then(res => res.json()) .then(data => console.log(data));