You'll need to custom code a bot that does it for you.
Login -> Get mobile checkpoint -> Submit phone number -> Receive SMS -> Submit SMS code -> Follow HTTP redirect -> Test random API endpoint that would normally throw checkpoint error. If there was no error message set, it means your account is now verified. That's 7 HTTP requests total. You'll probably want an asynchronous callback or a "delay" function for your numbers list with the GSM API you choose to use (note: most providers are blacklisted by Facebook/Instagram or choose to filter the messages from the IG phone number, so good luck finding one that works properly).
My method is very similar to the one above. It's built on a nice Python stack using a private phone number supplier for the SMS/VoIP side of things, and utilizes Instagram's private mobile API's (both iPhone and Android, depending on the batch of accounts I'm creating). My settings are 14 accounts per phone number, and 2 accounts per proxy. They're grouped together in an object like this:
Code:
/**
* Note: All account_blocks array objects are stored as references in a relational schema.
*/
{
"account_blocks" : [
{
"accounts" : [
{"_id" : ObjectId(db.accounts._id)}, //Account objects contain account info, device info references, dates of creation, and metadata
{"_id" : ObjectId(db.accounts._id)},
{"_id" : ObjectId(db.accounts._id)},
],
"proxies" : [
{"_id" : ObjectId(db.proxies._id)}, //Proxy objects contain information like latitude, longitude, etc
{"_id" : ObjectId(db.proxies._id)},
{"_id" : ObjectId(db.proxies._id)}
],
"numbers" : [
{"_id" : ObjectId(db.phone_numbers._id)}, //Phone Number objects contain the usage statistics, last usage, amount of messages recieved, and nested message objects that were received from the private SMS API provider.
{"_id" : ObjectId(db.phone_numbers._id)},
{"_id" : ObjectId(db.phone_numbers._id)},
]
},
]
}
Using a structure like that, as well as high quality code that emulates the clients and devices I'm pretending to use ensures long lasting accounts that aren't easily distinguishable from real users in any sense. Fun fact: None of my accounts were banned during IG's fake account purge over the last few days.
Programming is fun!
To answer your question though, igerslike and i think followliker both have phone verification built in. You have to type the code manually, but they make it pretty easy.