Get Media
Retrieve audio media by audio id.
Params
Name | Type | Default | Description |
---|---|---|---|
id (required) | int | – | Audio id |
max_id | string | None | Use for pagination |
You can use the max_id
parameter to paginate through the media (take from the next_max_id
field of the response).
Usage
- Python
- PHP
- cURL
from rocketapi import InstagramAPI
instagram_api = InstagramAPI(token="your-api-key")
print(instagram_api.get_audio_media(2719627934837931))
<?php
require('vendor/autoload.php');
use RocketAPI\InstagramAPI;
$api = new InstagramAPI('your-api-key');
print_r($api->getAudioMedia(2719627934837931));
curl --request POST \
--url https://v1.rocketapi.io/instagram/audio/get_media \
--header 'Content-Type: application/json' \
--header 'Authorization: Token your-api-key' \
--data '{
"id": 2719627934837931
}'
Response example
Loading...