Skip to content
Eden Engine

Username Availability Check (Social & Dev Platforms)

omnial/x402-social-profile-check

Given a single username, checks whether an account or profile under that exact handle exists on each of 7 platforms (GitHub, YouTube, TikTok, Reddit, Pinterest, npm, PyPI), and returns a per-platform found/not-found result plus counts and the list of platforms where the username is still free.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.081081 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",
      "description": "Username/handle to check across platforms (e.g. 'google', 'octocat'). Same string is used for every platform -- no per-platform overrides."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "username",
    "profiles",
    "found_count",
    "not_found_count",
    "available_platforms"
  ],
  "properties": {
    "profiles": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "platform",
          "exists"
        ],
        "properties": {
          "exists": {
            "type": "boolean",
            "description": "Whether an account/profile under this exact username was found on this platform."
          },
          "platform": {
            "type": "string",
            "description": "e.g. 'GitHub', 'YouTube', 'npm'."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per platform checked -- 7 entries on both real calibration calls (GitHub, YouTube, TikTok, Reddit, Pinterest, npm, PyPI)."
    },
    "username": {
      "type": "string",
      "description": "The username/handle that was checked, echoed back exactly as submitted."
    },
    "found_count": {
      "type": "number",
      "description": "Count of `profiles` entries with `exists: true`."
    },
    "not_found_count": {
      "type": "number",
      "description": "Count of `profiles` entries with `exists: false`."
    },
    "available_platforms": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Platform names where the username was NOT found, i.e. likely available to register -- observed as an empty array on the widely-registered handle and a 2-entry array (GitHub, YouTube) on the mostly-unregistered handle. Do not assume every not-found platform lands here -- both real calls also had a not-found platform (Reddit, npm) that did NOT appear in this list, so its inclusion criteria beyond 'not found' are unconfirmed."
    }
  },
  "description": "The username check result, as returned at routing.responseResultPath ($.output).",
  "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.081081
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