> 8 apps · 19 versions · more added weekly
Run 50 accounts
on one phone.
Generate real, signed APKs of Instagram, Telegram, X, and more — each a standalone app with its own device fingerprint, storage, and identity. No emulators, no second phones, no shared containers that get accounts flagged. Install on any Android device; manage from one dashboard or the API.
> built for agencies, growth operators & anyone running social at scale · pay in crypto or card
one device. every account. zero phone farm.
Running social at scale usually means a drawer full of phones, flaky emulators, or container apps that platforms detect and ban. Clonely gives every account a real, isolated app instead — so you scale on hardware you already own.
one device, unlimited identities
Stop buying phones and fighting emulators. Each clone is a full standalone app you install side-by-side on a device you already have.
ban-resistant by design
Every clone ships with its own device fingerprint, storage sandbox, and signature — so platforms see independent devices, not 50 logins from one.
private by default
Bring your own device, pay in crypto or card. We never touch your logins, your accounts, or your content — clones run entirely on your hardware.
scale in seconds
Generate a batch in under a minute from the dashboard or REST API. Recycle a slot the instant you're done and spin up the next — no waiting, no re-buying.
clone the apps that matter
Pick a platform, pick an app, and we build signed, fingerprint-isolated instances of it. New apps and versions land continuously.
generate as many as you need
Pay for the number of clones you can have active at once. Remove old ones to make room — removed clones stop working on the device immediately.
> pay monthly in crypto (BTC, USDT) or card · prepaid balance, no lock-in · cancel anytime
free
$0/30d
5 active clones
- all supported apps
- 30-day trial
- no credit card
- email signup
starter
$39/mo
25 active clones
- all supported apps
- dashboard access
- cancel anytime
- email support
pro
$59/mo
50 active clones
- all supported apps
- priority queue
- dashboard access
- priority support
scale
$99/mo
150 active clones
- all supported apps
- priority queue
- api access
- priority support
premium
$199/mo
500 active clones
- all supported apps
- top-tier priority
- api access
- direct support
enterprise
custom/mo
500+ active clones
- volume pricing
- dedicated support
- custom integrations
- SLA available
from signup to installed clones in minutes
subscribe
Pick a plan and pay. We email a sign-in link the moment payment confirms.
generate
Pick an app + count. We build signed, fingerprint-isolated APKs in under a minute each.
install
Download a zip and sideload onto any Android device via ADB or your file manager.
manage
See every active clone in your dashboard. Remove old ones to free cap and clone more.
talk to the cloner
Generate, monitor, and download clones from your own code. Available on Scale, Premium, and Enterprise plans.
base URL
https://clonelycloner.com/api/cloner
authentication
Every call takes an X-API-Key header. Generate keys in your dashboard.
typical flow
1. POST /api/clone with device_id, target_count, existing_packages, app_name
2. Poll GET /api/status/:jobId until status === "completed"
3. GET /api/download-zip/:jobId for the bundle
errors
JSON {success:false, error}: 400 bad body, 401 missing/invalid key, 403 plan lacks API access, 404 job not yours, 429 rate limit or active-cap reached, 500 internal.
curl https://clonelycloner.com/api/cloner/api/clone \
-X POST \
-H "X-API-Key: av_..." \
-H "Content-Type: application/json" \
-d '{
"device_id": "Pixel-7-01",
"existing_packages": [],
"target_count": 5,
"app_name": "telegram",
"version": "10.14.3",
"platform": "android"
}'response — 200 OK{
"success": true,
"test_mode": false,
"jobId": "abc123def456",
"status": "queued",
"deviceId": "Pixel-7-01",
"platform": "android",
"appName": "telegram",
"version": "10.14.3",
"clonesToGenerate": 5,
"estimatedTimeSeconds": 150,
"statusUrl": "/api/cloner/api/status/abc123def456"
}curl https://clonelycloner.com/api/cloner/api/status/abc123def456 \
-H "X-API-Key: av_..."response — 200 OK{
"jobId": "abc123def456",
"status": "completed",
"deviceId": "Pixel-7-01",
"createdAt": "2026-05-22T22:14:31Z",
"startedAt": "2026-05-22T22:14:33Z",
"completedAt": "2026-05-22T22:17:14Z",
"progress": { "completed": 5, "total": 5, "current": null },
"packages": [
{
"packageName": "org.telegram.messenger.a1b2",
"cloneUuid": "7f3a9c12-8b4d-4e2a-9c10-1a2b3c4d5e6f",
"downloadUrl": "/api/cloner/api/download/abc123def456/org.telegram.messenger.a1b2.apk"
}
],
"generatedCount": 5,
"expiresAt": "2026-06-21T22:17:14Z"
}curl https://clonelycloner.com/api/cloner/api/available-apps \
-H "X-API-Key: av_..."response — 200 OK{
"apps": {
"android": {
"instagram": ["347.3.0.41.103", "365.0.0.40.94", "402.0.0.49", "410.1.0.63.71", "417.0.0.54.77", "427.0.0.47.73", "430.0.0.53.80"],
"threads": ["365.0.0.40.109", "407.0.0.56.162", "429.0.0.43.72", "430.0.0.46.79"],
"reddit": ["2025.23.0", "2025.37.0"],
"twitter": ["11.5.1"],
"telegram": ["10.14.3"],
"discord": ["306.13"],
"tinder": ["16.26.0", "16.35.0"],
"hinge": ["9.104.1"]
}
},
"platforms": ["android"],
"total_apps": 8,
"total_versions": 19
}curl https://clonelycloner.com/api/cloner/api/device-profiles \
-H "X-API-Key: av_..."response — 200 OK{
"available": [
"galaxy_s9_plus",
"galaxy_s10",
"pixel_6",
"pixel_7"
],
"all": [
"galaxy_s9_plus",
"galaxy_s10",
"pixel_6",
"pixel_7"
],
"default": "random"
}
# Pass any slug as "device_profile" in POST /api/clone, or
# omit it / use "random" to spoof a randomized profile.curl https://clonelycloner.com/api/cloner/api/download-zip/abc123def456 \
-H "X-API-Key: av_..." \
-o clones.zipresponse — 200 OK · application/zip# binary zip stream — all APKs from the job, named
# {packageName}.apk inside.request — GET /api/download/:jobId/:filenamecurl https://clonelycloner.com/api/cloner/api/download/abc123def456/org.telegram.messenger.a1b2.apk \
-H "X-API-Key: av_..." \
-o telegram_a1b2.apkresponse — 200 OK · application/vnd.android.package-archive# binary APK stream — install via ADB or file manager.curl https://clonelycloner.com/api/cloner/api/me/clones \
-H "X-API-Key: av_..."response — 200 OK{
"clones": [
{
"cloneUuid": "7f3a9c12-8b4d-4e2a-9c10-1a2b3c4d5e6f",
"packageName": "org.telegram.messenger.a1b2",
"label": "Clone",
"isActive": true,
"expiresAt": "2026-06-21T22:17:14Z",
"createdAt": "2026-05-22T22:17:14Z"
}
],
"active_count": 2,
"cap": 150,
"tier": "scale",
"limit": 200,
"offset": 0,
"has_more": false
}curl https://clonelycloner.com/api/cloner/api/me/clones/7f3a9c12-8b4d-4e2a-9c10-1a2b3c4d5e6f/remove \
-X POST \
-H "X-API-Key: av_..."response — 200 OK{
"cloneUuid": "7f3a9c12-8b4d-4e2a-9c10-1a2b3c4d5e6f",
"removedAt": "2026-05-23T09:41:02Z",
"alreadyRemoved": false
}
# Permanent. Frees one active-cap slot. The installed APK
# stops working on its next launch (validate returns
# no_subscription for this cloneUuid).common questions
what does "active clone" mean?
An active clone is a generated APK that still works when installed on a device. Each plan caps how many you can have active at once. When you remove a clone, the installed APK stops working on next launch — and that slot frees up so you can generate a new one.
do clones stop working if I cancel?
Yes. All your clones deactivate immediately on cancellation. The installed APKs stop working on next launch. Resubscribe to generate new ones.
which apps are supported?
Eight apps on Android: Instagram, Threads, Reddit, X (Twitter), Telegram, Discord, Tinder, and Hinge — 19 builds in total, rebuilt against the latest published versions on a rolling weekly basis. iOS (Instagram, Threads, Facebook, Reddit, Telegram, YouTube) is in the works and ships as sideloaded .ipa instances.
will my accounts get banned?
Clonely is built to minimize cross-account linkage: every clone is a separately signed app with its own device fingerprint and isolated storage, so platforms don't see them as the same install. That removes the most common technical fingerprint that gets multi-account setups flagged. No tool can promise zero bans — platform behavior depends on how you actually use the accounts — but you start from genuinely independent devices instead of one phone with 50 logins.
how do I pay — and is it private?
Crypto (Bitcoin or USDT) or card. You load a prepaid balance and your plan renews from it monthly, so there's no open-ended subscription and nothing auto-charges once your balance runs out. Crypto checkout requires no account linkage on our side. Cancel or stop topping up anytime.
is there an API?
Yes. API access is included on Scale ($99), Premium ($199), and Enterprise plans. It covers programmatic batch creation, status polling, and downloads — see the API reference above. Starter and Pro use the dashboard for clone management.
where do I install the clones?
You bring your own Android device(s). We give you signed APK files; you sideload them via ADB or a file manager. Each clone runs as its own app with separate storage.
what if Instagram updates?
We rebuild against the latest published version of every supported app on a rolling basis. The catalog at GET /api/cloner/api/available-apps always reflects what's currently buildable. If a version you need isn't listed, email support — we can usually add it in a day or two.