Skip to main content
GET
/
api
/
instagram-resolver
Instagram Resolver
curl --request GET \
  --url https://www.osintcat.net/api/instagram-resolver \
  --header 'X-API-KEY: <x-api-key>'

Documentation Index

Fetch the complete documentation index at: https://docs.osintcat.net/llms.txt

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

Resolve an Instagram share link to expose both the author of the post and the sharer (the user who generated the share link). Pulls the xig_logged_out_dynamic_dialog_info payload that Instagram embeds for logged-out viewers.

Parameters

An Instagram share URL, e.g. https://www.instagram.com/share/p/ABCDEFGHIJ

Headers

X-API-KEY
string
required
Your API key

Response

{
  "success": true,
  "author":  { "username": "...", "avatar": "..." },
  "sharer":  { "username": "...", "full_name": "...", "id": "...", "avatar": "..." },
  "entity_id": "...",
  "_meta": { ... }
}

Example Request

curl "https://www.osintcat.net/api/instagram-resolver?link=https%3A%2F%2Fwww.instagram.com%2Fshare%2Fp%2FABCDEFGHIJ" \
     -H "X-API-KEY: YOUR_API_KEY"