Get Info
Retrieve live information by broadcast id.
Params
| Name | Type | Default | Description | 
|---|---|---|---|
| id (required) | int | – | Broadcast id | 
Usage
- Python
 - PHP
 - cURL
 
from rocketapi import InstagramAPI
instagram_api = InstagramAPI(token="your-api-key")
print(instagram_api.get_live_info(17907772079050114))
<?php
    require('vendor/autoload.php');
    use RocketAPI\InstagramAPI;
    $api = new InstagramAPI('your-api-key');
    print_r($api->getLiveInfo(17907772079050114));
curl --request POST \
    --url https://v1.rocketapi.io/instagram/live/get_info \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Token your-api-key' \
    --data '{
        "id": 17907772079050114
    }'
Response example
Loading...