Instagram API
Profiles, posts, comments and hashtags. Creator discovery and campaign verification.
5
endpoints
2
credits, cheapest call
A failed call is refunded
—
success rate
Published once there is traffic
Endpoints
GET /v1/instagram/profileGet a public Instagram profile
instagram_profile3credits
GET /v1/instagram/postsGet recent posts from a profile
instagram_post[]3credits
GET /v1/instagram/postGet one post
instagram_post2credits
GET /v1/instagram/commentsGet the comments on a post
instagram_comment[]3credits
GET /v1/instagram/hashtagGet recent posts for a hashtag
instagram_post[]4credits
What a response looks like
Instagram data comes back in Instagram’s own shape, named after Instagram's Graph API: instagram_profile, instagram_post, instagram_comment. This is /v1/instagram/profile, unabridged.
{
"data": {
"id": "2964109760",
"username": "nasa",
"name": "Petr Lindqvist",
"biography": "Building things for the web. Occasionally outdoors.",
"website": null,
"bio_links": [
{
"title": "Shop",
"url": "https://nasa.example/shop"
}
],
"profile_picture_url": "https://cdn.example/ig/Pqk6YPL8i17f.jpg",
"followers_count": 1561444,
"follows_count": 341,
"media_count": 1578,
"is_verified": true,
"is_private": false,
"is_business_account": true,
"category": "Coffee shop",
"business_email": "hello@nasa.example",
"business_phone_number": null,
"highlight_reel_count": 0
},
"meta": {
"request_id": "req_7f3ac1e94b2d40f8a1c6e5d2",
"credits_charged": 3,
"credits_remaining": 74218,
"cached": false,
"fetched_at": "2026-09-20T09:12:03Z",
"next_cursor": null
}
}