Instagram Posts

POST1 Credit
https://api.crawlkit.sh/v1/crawl/instagram/posts

List public Instagram feed posts for a profile with cursor pagination and normalized post summaries for ingestion workflows.

Try on Playground

Authentication

Send your Crawlkit API key as a Bearer token in the Authorization header.

Authorization: Bearer ck_your_api_key

Request Parameters

Send these JSON body fields in your request payload.

NameTypeDescription
usernamestringPublic username.
cursornullPagination cursor.

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/posts', {2  method: 'POST',3  headers: {4    'Authorization': 'Bearer YOUR_API_KEY',5    'Content-Type': 'application/json'6  },7  body: JSON.stringify({8    username: 'natgeo',9    cursor: null,10    options: {11    }12  })13});14 15const { data } = await response.json();16console.log(data.posts.length, data.pagination.nextCursor);

Response

Success (200 OK): Returns service-specific structured payload.

Success response (200 OK)
1{2  "success": true,3  "data": {4    "posts": [5      {6        "id": "35891234567890123",7        "shortcode": "DABCD12xyz",8        "display_url": "https://instagram.fist6-1.fna.fbcdn.net/...",9        "thumbnail_src": "https://instagram.fist6-1.fna.fbcdn.net/...",10        "is_video": false,11        "video_url": null,12        "caption": "A new story from the field.",13        "like_count": 182340,14        "comment_count": 912,15        "taken_at_timestamp": 1711262104,16        "dimensions": {17          "height": 1350,18          "width": 108019        },20        "video_view_count": null21      }22    ],23    "pagination": {24      "nextCursor": "QVFDc1pW...",25      "hasMore": true26    },27    "timing": { "total": 2400 },28    "creditsUsed": 1,29    "creditsRemaining": 9930  }31}