Version 1 returns public top-level comments and replyCount. Nested reply trees are not expanded yet.
Visible public comments extracted from the post HTML surface
Fetch the comments that are visibly embedded in the public Instagram post or reel HTML. This endpoint does not expand deeper pages or replies and does not expose pagination.
Get started with a simple API call.
const response = await fetch('https://api.crawlkit.sh/v1/crawl/instagram/comments', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
shortcode: 'CxIIgCCq8mg',
options: {
timeout: 30000
}
})
});
const { data } = await response.json();
console.log(data.comments.length);Everything you need for reliable instagram comments workflows.
Returns the commenter fields visible on the public HTML surface for a post or reel.
The endpoint returns only the comment slice embedded in the HTML response. There is no nextCursor.
Works against both posts and reels, using the existing Instagram Content identifier format.
Get started in minutes with our simple API.
Sign up for free and get your API key instantly. No credit card required.
Use our simple REST API with your favorite programming language.
Receive clean JSON responses ready to use in your application.
Get clean, structured JSON data with every request. Our API returns comprehensive data including status codes, timing information, and your remaining credits.
{
"success": true,
"data": {
"comments": [
{
"id": "17981234567000001",
"text": "This is incredible.",
"createdAt": 1711262420,
"likeCount": 142,
"replyCount": 3,
"username": "traveler.ana",
"fullName": "Ana Silva",
"profilePicUrl": "https://instagram.fist6-1.fna.fbcdn.net/...",
"isVerified": false
}
],
"timing": { "total": 2100 },
"creditsUsed": 1,
"creditsRemaining": 99
}
}Common applications for Instagram Comments.
Collect public comments for moderation and sentiment pipelines.
Study how audiences react to creators, campaigns, and topics.
Extract commenter usernames for qualification or enrichment workflows.
Everything you need to know about the Instagram Comments API.
Version 1 returns public top-level comments and replyCount. Nested reply trees are not expanded yet.
You can send the shortcode itself or a full public Instagram post or reel URL.
This endpoint intentionally returns only the visible comment slice embedded in the public HTML response. It does not attempt deeper page expansion.
Get 100 free credits to test the API. No credit card required.