Skip to content
Eden Engine

GitHub User Profile Lookup (by Username)

omnial/x402-github-user-profile

Given a GitHub username, returns that user's public profile (display name, bio, company, location, account type, follower/following/repo/gist counts, join date) plus their most recently updated repositories (name, description, language, stars, forks, fork status).

activeper callv1
Provider
Web & Business Data Network
Category
developer-tools
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"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "bio": {
      "type": [
        "string",
        "null"
      ],
      "description": "Free-text profile bio. Observed `null` on the personal-account fixture and populated on the organization-account fixture."
    },
    "name": {
      "type": "string",
      "description": "The account's display name. Observed populated on both fixtures (a personal and an organization account); not confirmed for an account with no display name set."
    },
    "email": {
      "type": [
        "string",
        "null"
      ],
      "description": "Public contact email, only present when the account chose to publish one on its profile -- observed `null` on both fixtures captured."
    },
    "company": {
      "type": [
        "string",
        "null"
      ],
      "description": "Self-reported employer/organization text. Observed populated on the personal-account fixture and `null` on the organization-account fixture."
    },
    "twitter": {
      "type": [
        "string",
        "null"
      ],
      "description": "Linked social handle, only present when the account added one to its profile -- observed `null` on both fixtures captured."
    },
    "location": {
      "type": "string",
      "description": "Self-reported free-text location. Observed populated on both fixtures; not confirmed for an account with none set."
    },
    "username": {
      "type": "string",
      "description": "The GitHub username looked up."
    },
    "followers": {
      "type": "number"
    },
    "following": {
      "type": "number"
    },
    "created_at": {
      "type": "string",
      "description": "ISO 8601 timestamp the account was created."
    },
    "updated_at": {
      "type": "string",
      "description": "ISO 8601 timestamp the profile was last updated."
    },
    "account_type": {
      "type": "string",
      "description": "e.g. 'User' or 'Organization'."
    },
    "public_gists": {
      "type": "number"
    },
    "public_repos": {
      "type": "number"
    },
    "recent_repos": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "forks": {
            "type": "number"
          },
          "stars": {
            "type": "number"
          },
          "is_fork": {
            "type": "boolean"
          },
          "language": {
            "type": [
              "string",
              "null"
            ],
            "description": "Primary language. Observed `null` on two repos in the organization-account fixture (repos with no dominant/detected language)."
          },
          "updated_at": {
            "type": "string",
            "description": "ISO 8601 timestamp."
          },
          "description": {
            "type": "string",
            "description": "Repo description. Observed populated on every repo across both fixtures; not confirmed for a repo with none set."
          }
        },
        "additionalProperties": true
      },
      "description": "The account's most recently updated repositories (10 entries on each of the two fixtures observed with public repos) -- includes forks."
    }
  },
  "description": "The profile record, 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 15, 2026