Skip to content
Eden Engine

Instagram Search (Users, Hashtags & Places)

omnial/instagram-fetch-search

Given a search keyword, returns the matching Instagram accounts, hashtags, and places -- the same three result categories Instagram's own in-app search bar returns. An optional `select` filter narrows the response to just one of those categories (users, hashtags, or places) instead of all three.

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": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "examples": [
        "taylorswift"
      ],
      "description": "Search keyword"
    },
    "select": {
      "type": "string",
      "description": "Filter type: users/hashtags/places. Omit to get all three categories in one response."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "users": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "user": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The same numeric Instagram user id as `pk`, duplicated by the upstream response."
              },
              "pk": {
                "type": "string",
                "description": "The account's numeric Instagram user id."
              },
              "username": {
                "type": "string"
              },
              "full_name": {
                "type": "string",
                "description": "The account's own public display name. Observed empty string for at least one real account."
              },
              "is_verified": {
                "type": "boolean"
              }
            },
            "additionalProperties": true
          },
          "position": {
            "type": "number",
            "description": "Rank of this result in the response."
          }
        },
        "additionalProperties": true
      },
      "description": "Matching accounts, present when `select` is omitted or 'users'."
    },
    "places": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "place": {
            "type": "object",
            "properties": {
              "title": {
                "type": "string",
                "description": "The place's public name."
              },
              "location": {
                "type": "object",
                "properties": {
                  "pk": {
                    "type": "number",
                    "description": "The place's own numeric Instagram id."
                  },
                  "name": {
                    "type": "string",
                    "description": "The place's name, as recorded on its location record."
                  },
                  "facebook_places_id": {
                    "type": "number",
                    "description": "The linked Facebook Places numeric id for this location."
                  }
                },
                "additionalProperties": true
              },
              "subtitle": {
                "type": "string",
                "description": "A secondary label (e.g. a region). Observed empty in the one real place calibrated."
              }
            },
            "additionalProperties": true
          },
          "position": {
            "type": "number",
            "description": "Rank of this result in the response."
          }
        },
        "additionalProperties": true
      },
      "description": "Matching places, present when `select` is omitted or 'places'."
    },
    "status": {
      "type": "string",
      "description": "'ok' on both fixtures observed."
    },
    "hashtags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "hashtag": {
            "type": "object",
            "properties": {
              "id": {
                "type": "number",
                "description": "The hashtag's own numeric Instagram id."
              },
              "name": {
                "type": "string",
                "description": "The hashtag text, without the '#'."
              },
              "media_count": {
                "type": "number",
                "description": "Total posts tagged with this hashtag."
              }
            },
            "additionalProperties": true
          },
          "position": {
            "type": "number",
            "description": "Rank of this result in the response."
          }
        },
        "additionalProperties": true
      },
      "description": "Matching hashtags, present when `select` is omitted or 'hashtags'."
    }
  },
  "description": "The search-results record, as returned at routing.responseResultPath ($.output). Which of `hashtags`/`places`/`users` are present depends on the `select` input: all three are present with no `select`, but only the one matching category's array is present when `select` is given (confirmed against `hashtags-only-nasa.json`, which carries only `status` and `hashtags`, no `places`/`users` keys at all).",
  "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 15, 2026