Make Your Links Small & Shareable πŸš€

cilik means "small" in Indonesian β€” just like your links! Turn long URLs into tiny, easy-to-share short links instantly. No signup required.

πŸ”— Create a Short Link

Paste your long URL below and instantly generate a short one.

Why Choose cilik.in?

Easy to Use

Just paste your long URL, click generate, and get a short link instantly.

Fast & Free

No sign-up required. Shorten unlimited links completely free.

Share Anywhere

Perfect for WhatsApp, social media, SMS, or email campaigns.

πŸš€ How It Works

1️⃣ Paste Link

Copy your long link and paste it into the box above.

2️⃣ Click Generate

Our system creates a short unique link for you.

3️⃣ Copy Short URL

Get your new short URL instantly, ready to share.

4️⃣ Share Anywhere

Use it in chats, emails, or social media posts.

⚑ Developer API

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.

➑️ Endpoint
POST https://cilik.in/api.php
πŸ”‘ Authentication

Include your api_key in the request body and pass it as an Authorization header:

πŸ“€ Request (JSON)
{
  "long_url": "https://example.com/some/very/long/link"
}
πŸ“₯ Response (JSON)
{
  "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.

πŸ’‘ Example cURL Request
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"
}'
πŸ’» Example JavaScript (Fetch)
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));

❓ Frequently Asked Questions

βœ… Yes, cilik.in is 100% free. You can shorten unlimited links without registration.

πŸ”— No, your short links are permanent and will always redirect to the original long URL.

πŸš€ No account is needed. Just paste a link, click generate, and you’re done.