Skip to content

IG User Business Discovery

Justin Stolpe edited this page May 21, 2022 · 7 revisions

Get info on other Instagram business and creator accounts.

Code

use Instagram\User\BusinessDiscovery;
use Instagram\Request\Params;

$config = array( // instantiation config params
    'user_id' => '<IG_USER_ID>',
    'username' => '<USERNAME>', // string of the Instagram account username to get data on
    'access_token' => '<ACCESS_TOKEN>',
);

// instantiate business discovery for a user
$businessDiscovery = new BusinessDiscovery( $config );

// initial business discovery
$userBusinessDiscovery = $businessDiscovery->getSelf();
Clone this wiki locally