Skip to main content
POST
/
v1
/
scrape
/
instagram
/
user
/
posts
Scrape Instagram user posts
curl --request POST \
  --url https://api.vidjutsu.ai/v1/scrape/instagram/user/posts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "handle": "<string>",
  "cursor": "<string>",
  "download_media": false
}
'
{
  "data": "<unknown>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.vidjutsu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
handle
string
required

Instagram username

cursor
string

Pagination cursor

download_media
boolean
default:false

When true, media URLs in the response are staged through VidJutsu CDN and the response contains ONLY VidJutsu URLs. Defaults to false (raw source URLs returned as-is).

Response

The request has succeeded.

data
any
required

Pass-through response from Scrape Creators. Shape varies per endpoint. When download_media was true, all media URLs are replaced with VidJutsu CDN URLs.