Skip to content
Eden Engine

Instagram Tagged Posts Lookup (by User ID)

omnial/instagram-fetch-user-tagged-posts

Given an Instagram numeric user ID, returns the public photos that account has been tagged in: each photo's caption, like/comment counts, dimensions, publish time, and the public handle of whoever posted it, with a cursor to page through more. A user with no tagged photos returns an empty result rather than an error.

activeper callv1
Provider
Web & Business Data Network
Category
instagram
Provider price
$0.0020475 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": [
    "user_id"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "default": 12,
      "maximum": 50,
      "minimum": 1,
      "description": "Count per page"
    },
    "user_id": {
      "type": "string",
      "examples": [
        "25025320"
      ],
      "description": "Instagram user ID"
    },
    "end_cursor": {
      "type": "string",
      "description": "Pagination cursor for next page"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "user": {
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "edge_user_to_photos_of_you": {
              "type": "object",
              "properties": {
                "count": {
                  "type": "number",
                  "description": "Total number of tagged photos, not just the count on this page."
                },
                "edges": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "node": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string",
                            "description": "The photo's own numeric id."
                          },
                          "owner": {
                            "type": "object",
                            "properties": {
                              "id": {
                                "type": "string",
                                "description": "Poster's numeric account id."
                              },
                              "username": {
                                "type": "string",
                                "description": "Poster's public Instagram handle."
                              }
                            },
                            "description": "The public account that posted (and tagged) this photo -- not necessarily the queried user, who is the SUBJECT tagged in it.",
                            "additionalProperties": true
                          },
                          "is_video": {
                            "type": "boolean"
                          },
                          "shortcode": {
                            "type": "string",
                            "description": "The photo's Instagram shortcode (used in its own URL)."
                          },
                          "dimensions": {
                            "type": "object",
                            "properties": {
                              "width": {
                                "type": "number"
                              },
                              "height": {
                                "type": "number"
                              }
                            },
                            "additionalProperties": true
                          },
                          "display_url": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "description": "The photo's full-size image URL. Value withheld (stripped to `null`) in this tool's output -- only whether the field is populated is observable, not the image itself."
                          },
                          "edge_liked_by": {
                            "type": "object",
                            "properties": {
                              "count": {
                                "type": "number"
                              }
                            },
                            "additionalProperties": true
                          },
                          "thumbnail_src": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "description": "The photo's thumbnail image URL. Value withheld (stripped to `null`) in this tool's output, same reasoning as `display_url`."
                          },
                          "comments_disabled": {
                            "type": "boolean"
                          },
                          "has_upcoming_event": {
                            "type": "boolean"
                          },
                          "taken_at_timestamp": {
                            "type": "number",
                            "description": "Unix seconds."
                          },
                          "accessibility_caption": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "description": "Instagram's own auto-generated alt-text description."
                          },
                          "edge_media_to_caption": {
                            "type": "object",
                            "properties": {
                              "edges": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "node": {
                                      "type": "object",
                                      "properties": {
                                        "text": {
                                          "type": "string"
                                        }
                                      },
                                      "additionalProperties": true
                                    }
                                  },
                                  "additionalProperties": true
                                },
                                "description": "0 or 1 entries on both fixtures observed."
                              }
                            },
                            "additionalProperties": true
                          },
                          "edge_media_to_comment": {
                            "type": "object",
                            "properties": {
                              "count": {
                                "type": "number"
                              }
                            },
                            "additionalProperties": true
                          },
                          "edge_media_preview_like": {
                            "type": "object",
                            "properties": {
                              "count": {
                                "type": "number"
                              }
                            },
                            "additionalProperties": true
                          }
                        },
                        "additionalProperties": true
                      }
                    },
                    "additionalProperties": true
                  }
                },
                "page_info": {
                  "type": "object",
                  "properties": {
                    "end_cursor": {
                      "type": [
                        "string",
                        "null"
                      ],
                      "description": "Pass back as `end_cursor` input to fetch the next page."
                    },
                    "has_next_page": {
                      "type": "boolean"
                    }
                  },
                  "additionalProperties": true
                }
              },
              "additionalProperties": true
            }
          },
          "description": "`null` when the queried user_id has no tagged posts -- confirmed on the `empty-result` fixture. An object otherwise.",
          "additionalProperties": true
        }
      },
      "description": "Present only when the queried user has at least one tagged photo.",
      "additionalProperties": true
    }
  },
  "description": "The tagged-posts record, as returned at routing.responseResultPath ($.output). Shapes to `{}` when the queried user has no tagged posts -- confirmed against the `empty-result` fixture, which still billed the normal per-call price.",
  "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.0020475
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 23, 2026