Skip to content
Eden Engine

Instagram Profile Lookup (by Username or User ID)

omnial/instagram-fetch-user-info

Given an Instagram username or numeric user ID, returns that account's public profile: display name, bio, verification/private/business status, follower/following/media counts, bio links, and any publicly-listed business contact info. Returns an empty object `{}` when the username or user ID does not resolve to an existing account.

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",
  "anyOf": [
    {
      "required": [
        "user_id"
      ]
    },
    {
      "required": [
        "username"
      ]
    }
  ],
  "properties": {
    "user_id": {
      "type": "string",
      "examples": [
        "18527"
      ],
      "description": "User ID"
    },
    "username": {
      "type": "string",
      "examples": [
        "instagram"
      ],
      "description": "Username"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The account's numeric Instagram user ID."
        },
        "about": {
          "type": "object",
          "properties": {
            "country": {
              "type": "string"
            },
            "date_joined": {
              "type": "string",
              "description": "e.g. 'February 2012'."
            },
            "is_verified": {
              "type": "boolean"
            },
            "date_verified": {
              "type": [
                "string",
                "null"
              ]
            },
            "former_usernames": {
              "type": "number",
              "description": "A COUNT of former usernames, not the usernames themselves -- observed as the number `0` on the one real account calibrated, not an array."
            },
            "date_joined_as_timestamp": {
              "type": "number",
              "description": "Unix seconds."
            },
            "date_verified_as_timestamp": {
              "type": [
                "number",
                "null"
              ]
            }
          },
          "description": "Instagram's own 'About this account' panel: country, join date, and verification date/former-username history.",
          "additionalProperties": true
        },
        "category": {
          "type": "string",
          "description": "The account's self-set business/creator category label, e.g. 'Media/News Company'. Empty string observed for at least one real account."
        },
        "pronouns": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "username": {
          "type": "string"
        },
        "bio_links": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Withheld, same as `external_url`."
              },
              "title": {
                "type": "string"
              },
              "link_id": {
                "type": "string",
                "description": "Opaque internal id for this link."
              },
              "is_pinned": {
                "type": "boolean"
              },
              "link_type": {
                "type": "string",
                "description": "e.g. 'external'."
              },
              "media_type": {
                "type": "string"
              },
              "is_verified": {
                "type": "boolean"
              },
              "media_accent_color_hex": {
                "type": "string"
              }
            },
            "additionalProperties": true
          },
          "description": "Links the account has pinned to their bio."
        },
        "biography": {
          "type": "string"
        },
        "full_name": {
          "type": "string"
        },
        "page_name": {
          "type": [
            "string",
            "null"
          ],
          "description": "The name of the Facebook Page linked to this account, when any."
        },
        "is_private": {
          "type": "boolean"
        },
        "is_business": {
          "type": "boolean"
        },
        "is_verified": {
          "type": "boolean"
        },
        "media_count": {
          "type": "number"
        },
        "external_url": {
          "type": [
            "string",
            "null"
          ],
          "description": "The account's linked website, when present. Value withheld (returned as `null` regardless of what the account published) -- only whether the field is populated is observable, not the URL itself."
        },
        "location_data": {
          "type": "object",
          "properties": {
            "zip": {
              "type": "string"
            },
            "latitude": {
              "type": [
                "number",
                "null"
              ]
            },
            "city_name": {
              "type": "string"
            },
            "longitude": {
              "type": [
                "number",
                "null"
              ]
            },
            "address_street": {
              "type": "string"
            }
          },
          "description": "The business address the account owner has chosen to publish, when set. All fields observed empty/null on the one real account calibrated.",
          "additionalProperties": true
        },
        "follower_count": {
          "type": "number"
        },
        "following_count": {
          "type": "number"
        },
        "profile_pic_url": {
          "type": [
            "string",
            "null"
          ],
          "description": "Profile picture image, withheld the same way as `external_url`."
        },
        "profile_pic_url_hd": {
          "type": [
            "string",
            "null"
          ],
          "description": "Higher-resolution profile picture image, withheld the same way."
        },
        "public_phone_number": {
          "type": "string",
          "description": "Business contact phone number the account owner has chosen to publish on their public profile. Empty string when none is published -- observed empty on the one real account calibrated; unconfirmed whether a populated value is ever anything other than a business's own published contact number."
        },
        "contact_phone_number": {
          "type": "string",
          "description": "Same withheld-when-empty business phone field as `public_phone_number`."
        },
        "business_contact_method": {
          "type": "string",
          "description": "e.g. 'UNKNOWN' when the account has not configured one."
        },
        "hd_profile_pic_url_info": {
          "type": "object",
          "properties": {
            "url": {
              "type": [
                "string",
                "null"
              ],
              "description": "Withheld, same as `external_url`."
            },
            "width": {
              "type": "number"
            },
            "height": {
              "type": "number"
            }
          },
          "additionalProperties": true
        },
        "hd_profile_pic_versions": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Withheld, same as `external_url`."
              },
              "width": {
                "type": "number"
              },
              "height": {
                "type": "number"
              }
            },
            "additionalProperties": true
          },
          "description": "The same profile picture at multiple resolutions."
        },
        "public_phone_country_code": {
          "type": "string"
        }
      },
      "additionalProperties": true
    }
  },
  "description": "The profile record, as returned at routing.responseResultPath ($.output). Observed as an empty object `{}` (not a `data` object with null fields) when the given `username` or `user_id` does not resolve to an existing Instagram account -- confirmed against the `username-not-found` 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 8, 2026