> 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 and storage. No emulators, no second phones. 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
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: cc_..." \
-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: cc_..."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: cc_..."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: cc_..."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: cc_..." \
-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: cc_..." \
-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: cc_..."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: cc_..."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?
A generated APK that still works when installed. Each plan caps how many you can have active at once. Remove one and its APK stops working on next launch, freeing the slot for a new clone.
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?
Every clone is a separately signed app with its own fingerprint and isolated storage, so platforms don't see them as one install — removing the most common reason multi-account setups get flagged. No tool can promise zero bans (that depends on how you use the accounts), but you start from genuinely independent devices.
how do I pay — and is it private?
Crypto (Bitcoin or USDT) or card. You load a prepaid balance that your plan renews from monthly — nothing auto-charges once it runs out. Crypto checkout needs no account linkage. 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.