Instagram Popular
Fetch any public Instagram /popular/ page by path or full URL and return the visible related search chips plus normalized content details for the media items exposed on the page.
Try on PlaygroundAuthentication
Send your Crawlkit API key as a Bearer token in the Authorization header.
Authorization: Bearer ck_your_api_keyRequest Parameters
Send these JSON body fields in your request payload.
| Name | Type | Description |
|---|---|---|
path | string | Request field. |
Example Request
Use direct HTTP requests against the public API base URL.
Example request
1const response = await fetch('https://api.crawlkit.sh/v1/crawl/instagram/popular', {2 method: 'POST',3 headers: {4 'Authorization': 'Bearer YOUR_API_KEY',5 'Content-Type': 'application/json'6 },7 body: JSON.stringify({8 path: 'kilo ver',9 options: {10 }11 })12});13 14const { data } = await response.json();15console.log(data.badges, data.items[0]?.content.shortcode);Response
Success (200 OK): Returns service-specific structured payload.
Success response (200 OK)
1{2 "success": true,3 "data": {4 "path": "kilo ver",5 "url": "https://www.instagram.com/popular/kilo%20ver/",6 "badges": [7 "ver",8 "kilo kilo",9 "verli",10 "diyet menüsü"11 ],12 "items": [13 {14 "position": 1,15 "id": "3646428744946338181",16 "shortcode": "DMYKBmiIbYF",17 "url": "https://www.instagram.com/reel/DMYKBmiIbYF/",18 "mediaType": "video",19 "caption": "gizem.yucekeles on June 10, 2025: "Sadece 1 ayda 10 kilo vermek ister misin? 😍 ..."",20 "thumbnailUrl": "https://scontent.cdninstagram.com/v/t51.2885-15/...",21 "previewVideoUrl": "https://scontent.cdninstagram.com/o1/v/t16/f2/...",22 "playCount": 432,23 "owner": {24 "id": "67107363495",25 "username": "gizem.yucekeles",26 "profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/...",27 "is_verified": false28 },29 "content": {30 "id": "3646428744946338181",31 "shortcode": "DMYKBmiIbYF",32 "taken_at": 1749571200,33 "media_type": "video",34 "product_type": "clips",35 "width": 720,36 "height": 1280,37 "like_count": 128,38 "comment_count": 12,39 "caption": "Sadece 1 ayda 10 kilo vermek ister misin? 😍 ...",40 "has_audio": true,41 "display_url": "https://scontent.cdninstagram.com/v/t51.2885-15/...",42 "video_url": "https://scontent.cdninstagram.com/o1/v/t16/f2/...",43 "thumbnail_url": "https://scontent.cdninstagram.com/v/t51.2885-15/...",44 "owner": {45 "id": "67107363495",46 "username": "gizem.yucekeles",47 "full_name": "Gizem Yucekeles",48 "profile_pic_url": "https://scontent.cdninstagram.com/v/t51.2885-19/...",49 "is_verified": false50 },51 "audio_info": {52 "title": "orijinal ses",53 "artist_username": "gizem.yucekeles",54 "is_original": true55 },56 "carousel_media": null57 }58 }59 ],60 "pagination": {61 "startCursor": "AQHSIOLAhrrggpDTQzOc3iCJMAJYIA1TRKqFiBleTs3xqUEntd42h3nIY3QEfRJArOUL",62 "endCursor": "AQHSCAvinQj05_M3viRkfZTclE__b5XzQpTThLZ63Ls0dAix5FfzDbI_uthbPUH7zaoK",63 "hasMore": false64 },65 "timing": { "total": 1320 },66 "creditsUsed": 1,67 "creditsRemaining": 9968 }69}