Contract
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"examples": [
"https://www.linkedin.com/in/williamhgates/"
],
"description": "Full profile URL"
}
},
"additionalProperties": false
}{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The profile's LinkedIn handle/slug, e.g. 'williamhgates'."
},
"url": {
"type": "null",
"description": "A URL in the raw response (the canonical, sometimes region-localized, profile URL); stripped to null here since a URL leaf may not be shipped unredacted."
},
"city": {
"type": "string",
"description": "Free-text headline location, e.g. 'Seattle, Washington, United States'."
},
"name": {
"type": "string",
"description": "The profile's display name, as published by its owner."
},
"about": {
"type": [
"string",
"null"
],
"description": "The profile's self-written 'About' section. Null was not observed but is plausible."
},
"posts": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "LinkedIn's internal numeric post id, as a string."
},
"img": {
"type": "null",
"description": "A URL in the raw response (a cover image, present on some posts); stripped to null here."
},
"link": {
"type": "null",
"description": "A URL in the raw response (the post's own page); stripped to null here."
},
"title": {
"type": "string"
},
"created_at": {
"type": "string",
"description": "ISO 8601 timestamp."
},
"attribution": {
"type": "string",
"description": "A truncated preview of the post body."
},
"interaction": {
"type": "string",
"description": "Free-text engagement summary, e.g. '2,043 Comments'."
}
},
"additionalProperties": false
},
"description": "The profile owner's own recent long-form posts/articles."
},
"avatar": {
"type": "null",
"description": "A URL in the raw response (the profile photo); stripped to null here since a URL leaf may not be shipped unredacted."
},
"activity": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "LinkedIn's internal numeric activity id, as a string."
},
"img": {
"type": "null",
"description": "A URL in the raw response, when present (also observed genuinely null pre-strip on some entries); stripped to null here either way."
},
"link": {
"type": "null",
"description": "A URL in the raw response (the activity item's own page); stripped to null here."
},
"title": {
"type": "string",
"description": "The activity item's text/caption."
},
"interaction": {
"type": [
"string",
"null"
],
"description": "Free-text summary of the interaction, e.g. 'shared this'. Observed null on some entries."
}
},
"additionalProperties": false
},
"description": "Recent feed activity: posts the profile owner shared, liked, or commented on."
},
"location": {
"type": "string",
"description": "A shorter form of `city`, e.g. 'Seattle'."
},
"position": {
"type": [
"string",
"null"
],
"description": "Observed null on both captures; unconfirmed populated shape."
},
"bio_links": {
"type": "array",
"items": {
"type": "object",
"properties": {
"link": {
"type": "null",
"description": "A URL in the raw response (the custom link's destination); stripped to null here."
},
"title": {
"type": "string"
}
},
"additionalProperties": false
},
"description": "Custom links the profile owner added to their bio (label only -- the URL itself is not included)."
},
"education": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "null",
"description": "A URL in the raw response (the school's LinkedIn page); stripped to null here."
},
"title": {
"type": "string"
},
"end_year": {
"type": [
"string",
"null"
]
},
"start_year": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
],
"description": "Null on every entry observed."
},
"description_html": {
"type": [
"string",
"null"
],
"description": "Null on every entry observed."
},
"institute_logo_url": {
"type": "null",
"description": "Observed null on both captures. Not detected by census as a URL leaf (no populated value was ever captured to parse), but the field name strongly suggests a logo image URL -- treated as `strip: true` defensively rather than left as a plain identity pass-through, since a future populated value would otherwise ship a raw third-party asset host unreviewed."
}
},
"additionalProperties": false
}
},
"followers": {
"type": "number"
},
"last_name": {
"type": "string"
},
"timestamp": {
"type": "string",
"description": "The ISO 8601 time this lookup was performed."
},
"experience": {
"description": "Observed as null on both captures. Its populated shape (presumably a work-history array analogous to `education`) is unconfirmed -- treat as unknown/null only."
},
"first_name": {
"type": "string"
},
"influencer": {
"type": "boolean"
},
"connections": {
"type": "number",
"description": "LinkedIn caps its own displayed connection count at 500 -- one capture shows exactly 500."
},
"linkedin_id": {
"type": "string",
"description": "Observed identical to `id` on both captures."
},
"banner_image": {
"type": "null",
"description": "A URL in the raw response (the profile banner image); stripped to null here since a URL leaf may not be shipped unredacted."
},
"country_code": {
"type": "string",
"description": "Two-letter country code, e.g. 'US'."
},
"default_avatar": {
"type": "boolean",
"description": "Whether the profile is using LinkedIn's default placeholder photo."
},
"current_company": {
"type": "object",
"properties": {
"link": {
"type": "null",
"description": "A URL in the raw response (the company's LinkedIn page); stripped to null here."
},
"name": {
"type": "string"
},
"location": {
"type": [
"string",
"null"
],
"description": "Observed null on both captures."
},
"company_id": {
"type": "string"
}
},
"additionalProperties": false
},
"linkedin_num_id": {
"type": "string",
"description": "LinkedIn's internal numeric account id, as a string (e.g. '251749025'). This is a platform-assigned identifier, not a phone number, despite superficially looking like one."
},
"similar_profiles": {
"type": "array",
"items": {},
"description": "Observed as an empty array on both captures; item shape is unconfirmed."
},
"honors_and_awards": {
"description": "Observed as null on both captures; populated shape unconfirmed."
},
"educations_details": {
"type": "string",
"description": "A short summary string, e.g. the single most prominent school name."
},
"people_also_viewed": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"about": {
"type": [
"string",
"null"
]
},
"location": {
"type": "string"
},
"profile_link": {
"type": "null",
"description": "A URL in the raw response (that other member's profile URL); stripped to null here."
}
},
"additionalProperties": false
},
"description": "A short list of OTHER public LinkedIn profiles that LinkedIn's own UI surfaces alongside this one -- each entry is that other person's own self-published name/location/tagline, the same class of public data as the primary profile itself."
},
"current_company_name": {
"type": "string",
"description": "Duplicate of current_company.name, observed on both captures."
},
"memorialized_account": {
"type": "boolean"
},
"current_company_company_id": {
"type": "string",
"description": "Duplicate of current_company.company_id, observed on both captures."
}
},
"description": "The public LinkedIn profile record, as returned at routing.responseResultPath, after the field-map allowlist below. Both real captures were successful lookups of well-known public figures; behavior for a private, deactivated, or nonexistent profile URL is unconfirmed.",
"additionalProperties": false
}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.
| Charge | Rate |
|---|---|
Per call Flat, regardless of what comes back | $0.01638 |
- 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
