Connect
Add each shortener with its API base URL and key. Every provider can be test-fired from the dashboard before it goes live.
ShortSync sits one layer above the URL shorteners you already use. Connect them once, pick a rotation strategy, and drop a single script into your site — every outbound link is routed, encrypted and tracked from there.
Separate dashboards, separate API keys, separate reporting. Multiply that by the number of sites you run and link management stops being a task and becomes an operations problem.
No migration, no rebuild. Your pages, your links and your existing URLs stay exactly where they are.
Add each shortener with its API base URL and key. Every provider can be test-fired from the dashboard before it goes live.
Pick a rotation mode, then tune each provider's priority and weight to decide how much traffic it should carry.
Drop one script tag into your site, or call the REST API directly if you generate links server-side.
Outbound links route through your connected providers. Clicks, devices and completions are recorded as they happen.
Less busywork for publishers, and a clean API underneath for whoever maintains the code.
Each request picks a provider by the strategy you set, skipping anything marked inactive.
4 modesRank providers 1–10 and give each a weight, so your best-paying provider carries the most traffic.
per providerAdLinkFly-compatible services, any custom REST endpoint, or a direct pass-through with no shortener at all.
adlinkfly · custom_api · directDestination URLs are encrypted into an opaque payload, and the raw href is stripped from the DOM before the page is interactive.
no scrapeable hrefsOne tag rewrites matching links on load and keeps watching for anything your theme injects afterwards.
WordPress-readyConvert up to 500 URLs in a single authenticated call. CORS is open, so it works from any domain you own.
Bearer tokenEvery routed request records device, browser, OS and country, plus whether the visitor completed the ad step.
per clickSubscribers skip the countdown entirely and land on the destination instantly, metered against their monthly allowance.
premium bypassUPI with QR, a payment screenshot and admin approval — built for markets where card-on-file is not the default.
UPI · verifiedThe mode is a single global setting, evaluated server-side on every request. Priority and weight are set per provider, so you shape the distribution without touching code.
round_robin
random
weighted
priority
ShortSync rewrites outbound links in place. Your theme, your markup and your existing URLs stay untouched — the script decides what to convert using a domain list you control.
*.wildcard support.<!-- Configure, then load. Nothing else changes. --> <script> var app_url = 'https://shortsync-platform.orewanj.com'; var app_api_token = 'YOUR_API_TOKEN'; var app_domains = ["drive.google.com", "mega.nz", "*.mediafire.com"]; </script> <script src="https://shortsync-platform.orewanj.com/code.js" defer></script> // Every <a> pointing at a listed host is rewritten to: // https://shortsync-platform.orewanj.com/go/<encrypted-payload>
POST /api/encrypt-links Authorization: Bearer •••••••••••••••• Content-Type: application/json { "urls": [ "https://example.com/file.zip", "https://mega.nz/folder/abc123" ] } # Up to 500 URLs per call · 60 requests/min per IP # CORS is open, so any domain you own can call it
{
"encrypted": [
"kQ8xT2vN...9rLmW4",
"pZ3fH7cB...2sVyK8"
]
}
// Payloads map 1:1 to the urls you sent, in order.
// A URL that fails validation comes back as null —
// the script falls back rather than dropping the link.
Every routed request is recorded with its provider, device, browser, OS and country — and whether the visitor made it through the ad step or dropped out.
Figures above are illustrative sample data, not customer metrics.
A plan buys a window of ad-free access and a monthly allowance of opens. No credit bundles to decode, no metered surprises — when the window ends, access simply lapses until it is renewed.
Pay to the displayed UPI ID or QR, upload the screenshot, and access is activated once an admin verifies it.
Expiry warnings and confirmations are emailed automatically, so a lapse is never a surprise.
Illustrative values.
What you see here is exactly what checkout charges — this grid is rendered from the live plans, not a marketing copy of them.
500 opens / month
Get started2,000 opens / month
Get started5,000 opens / month
Get started8,000 opens / month
Get startedunlimited opens
Get startedPrices are charged in INR. Payment is made manually by UPI and activated after verification — there is no card on file and nothing auto-renews, so a plan ends when its window ends.
adlinkfly for the many AdLinkFly-compatible services, custom_api for any REST endpoint that returns a short URL, and direct for pass-through with no shortener in the path.round_robin, random, weighted or priority. Round robin keeps a stored cursor so the rotation survives across requests rather than restarting each time.weighted mode traffic splits in proportion to those weights; in priority mode the highest-ranked active provider takes everything and the rest act as standby.POST /api/encrypt-links, authenticated with a Bearer token. It converts up to 500 URLs per call and is rate limited to 60 requests per minute per IP. CORS is open so you can call it from any domain you own.href is cleared from the DOM before the page becomes interactive — so right-click, middle-click and "copy link address" cannot expose it while conversion is still in flight.Connect the providers you already use, choose how traffic should be split between them, and let the router handle everything after that.