Provider docs

Instagram APILive

Public profiles and post feeds — Instagram joins the same normalized interface, no login or session cookies anywhere.

Quickstart

# Public profile
curl -X POST $BASE/v1/instagram/fetch \
  -H "Authorization: Bearer $REPLYNODES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"operation":"profile","params":{"username":"example"}}'

# Recent posts by a user
curl -X POST $BASE/v1/instagram/fetch \
  -H "Authorization: Bearer $REPLYNODES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"operation":"posts","params":{"username":"example","limit":10}}'

Operations

OperationParamsReturns
profileusernamePublic profile record.
postsusername, limit?, cursor?Recent public posts, paginated.

Data shape

URNs prefixed ig:post:…, ig:user:…. Media items carry type, dimensions, and HTTPS URLs per the shared media schema.