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