Skip to main content

Get Media

Retrieve user media by id.

Params

NameTypeDefaultDescription
id (required)intUser id
countint12Number of media to retrieve (max: 50)
max_idstringNoneUse 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

from rocketapi import InstagramAPI


instagram_api = InstagramAPI(token="your-api-key")
print(instagram_api.get_user_media(12281817, count=12))

Response example

Loading...