Skip to content
Eden Engine

Instagram Post Likers List (by Shortcode or URL)

omnial/instagram-fetch-post-likes

Given an Instagram post's shortcode or URL, returns the usernames and display names of accounts that liked it, along with each liker's verification/private status and the post's total like count. Supports pagination via an optional cursor. Returns an empty object `{}` when the shortcode does not resolve to an existing post.

activeper callv1
Provider
Web & Business Data Network
Category
instagram
Provider price
$0.004095 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "code_or_url"
  ],
  "properties": {
    "end_cursor": {
      "type": "string",
      "description": "Pagination cursor"
    },
    "code_or_url": {
      "type": "string",
      "examples": [
        "DRhvwVLAHAG"
      ],
      "description": "Post shortcode or URL"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "count": {
          "type": "number",
          "description": "How many likers are included in this page of results."
        },
        "items": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The liking account's numeric Instagram user ID."
              },
              "username": {
                "type": "string"
              },
              "full_name": {
                "type": "string",
                "description": "The liking account's display name. Observed empty on some accounts."
              },
              "is_private": {
                "type": "boolean"
              },
              "is_verified": {
                "type": "boolean"
              },
              "profile_pic_id": {
                "type": "string",
                "description": "Opaque internal id for the account's profile picture asset. Not present on every account observed (e.g. absent on at least one private account with an empty display name)."
              },
              "latest_reel_media": {
                "type": "number",
                "description": "0 on most accounts observed; a nonzero value is a Unix-seconds-like timestamp seen on at least one account with a recent active story/reel -- exact meaning of the nonzero case is not fully confirmed from a single observation."
              }
            },
            "additionalProperties": true
          },
          "description": "One entry per account that liked the post, in the order returned."
        },
        "total": {
          "type": "number",
          "description": "The post's total like count across all pages."
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The likers page, as returned at routing.responseResultPath ($.output). Observed as an empty object `{}` (not a `data` object with empty fields) when the given `code_or_url` does not resolve to an existing post -- confirmed against the `invalid-code-notfound` fixture, which billed $0 for that outcome.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.004095
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 12, 2026