Skip to content
Eden Engine

Threads Profile Lookup (by Username)

omnial/threads-web-fetch-user-info

Given a Threads username, returns that account's public profile: display name, bio, verification and privacy status, follower count, profile badges, and profile-picture link placeholders. Returns an empty result when the username does not resolve to an existing account.

activeper callv1
Provider
Web & Business Data Network
Category
threads
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": [
    "username"
  ],
  "properties": {
    "username": {
      "type": "string",
      "examples": [
        "lilbieber"
      ],
      "description": "Username"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The same numeric user ID as `pk`, duplicated under a second key."
    },
    "pk": {
      "type": "string",
      "description": "The account's numeric Threads user ID, as a string."
    },
    "username": {
      "type": "string"
    },
    "biography": {
      "type": "string"
    },
    "full_name": {
      "type": "string"
    },
    "is_verified": {
      "type": "boolean"
    },
    "account_badges": {
      "type": "array",
      "items": {},
      "description": "Badges shown on the account's profile. Observed as an empty array `[]` on the one fixture calibrated (a verified account); item shape unconfirmed."
    },
    "follower_count": {
      "type": "number"
    },
    "profile_pic_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Profile picture image. Value withheld (returned as `null` regardless of what the account has set) -- only whether the field is populated is observable, not the URL itself."
    },
    "hd_profile_pic_versions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "url": {
            "type": [
              "string",
              "null"
            ],
            "description": "Withheld, same as `profile_pic_url`."
          },
          "width": {
            "type": "number"
          },
          "height": {
            "type": "number"
          }
        },
        "additionalProperties": true
      },
      "description": "The same profile picture at multiple resolutions."
    },
    "text_post_app_is_private": {
      "type": "boolean",
      "description": "Whether the account's Threads posts are private."
    }
  },
  "description": "The account's profile record, narrowed at `responseResultPath` ($.output.user) past the aggregator's own `user` wrapper. Observed as an empty object `{}` when the given `username` does not resolve to an existing Threads account -- confirmed against the `nonexistent-notfound` fixture, whose raw result is `{ user: null }` (nothing to shape once narrowed past the wrapper).",
  "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 23, 2026