start free
multi_instance_app_cloning.exe

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

real signed APKs — not a container unique device fingerprint per clone runs on your own device crypto & card · private checkout 8 apps · rebuilt weekly full REST API clone in under 60s
supported_apps.list

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.

Android [ AVAILABLE ]
Instagram7 builds
Threads4 builds
Reddit2 builds
X / Twitter1 build
Telegram1 build
Discord1 build
Tinder2 builds
Hinge1 build

> 8 apps · 19 versions · more added weekly

iOS [ COMING SOON ]
InstagramiOS build
ThreadsiOS build
FacebookiOS build
RedditiOS build
TelegramiOS build
YouTubeiOS build
iOS cloning in the works

> sideloaded .ipa instances

pricing.sh

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
start free

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

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
workflow.txt

from signup to installed clones in minutes

01

subscribe

Pick a plan and pay. We email a sign-in link the moment payment confirms.

02

generate

Pick an app + count. We build signed, fingerprint-isolated APKs in under a minute each.

03

install

Download a zip and sideload onto any Android device via ADB or your file manager.

04

manage

See every active clone in your dashboard. Remove old ones to free cap and clone more.

> new to sideloading? Watch a short step-by-step guide to install your clones.
api_reference.md

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.

request — POST /api/clonecurl 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" }
request — GET /api/status/:jobIdcurl 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" }
request — GET /api/available-appscurl 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 }
request — GET /api/device-profilescurl 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.
request — GET /api/download-zip/:jobIdcurl 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.
request — GET /api/me/clonescurl 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 }
request — POST /api/me/clones/:cloneUuid/removecurl 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).
faq.log

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.

start in 30 seconds

No card needed for the free tier. Upgrade anytime.