Get LinkedIn person profiles by URL or handle
Get LinkedIn person profiles by URL or handle.
28000 (raw units)
price
13
calls / 30d
6
unique payers
2026-09-17
updated
Provider
api.socialfetch.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x02C2fCAfCe36B4AAdB39625866Bc6B1699d83043",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "28000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"url": [
"https://www.linkedin.com/in/marclouvion"
]
},
"type": "http"
},
"output": {
"example": {
"data": {
"results": [
{
"activity": [
null
],
"error": null,
"lookupStatus": "found",
"metrics": {
"connections": null,
"followers": null,
"recommendationsCount": null
},
"posts": [],
"profile": {
"_truncated": true,
"avatarUrl": null,
"bannerUrl": null,
"bio": null,
"displayName": null,
"firstName": null,
"handle": null,
"headline": null,
"lastName": null,
"location": null,
"numericId": null,
"platform": null,
"profileUrl": null
},
"relatedProfiles": [
null
],
"url": "https://www.linkedin.com/in/triciameinhold/"
}
],
"summary": {
"errored": 0,
"found": 1,
"notFound": 1,
"requestedUrls": 2
}
},
"meta": {
"creditsCharged": 4,
"requestId": "req_01example_batch",
"version": "v1"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"url": {
"description": "LinkedIn profile URL.",
"items": {
"description": "LinkedIn profile URL, vanity handle, `@handle`, or `in/{handle}` path.",
"maxLength": 4096,
"minLength": 1,
"type": "string"
},
"maxItems": 50,
"minItems": 1,
"type": "array"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.socialfetch.dev/v1/linkedin/profiles" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.socialfetch.dev/v1/linkedin/profiles");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.socialfetch.dev/v1/linkedin/profiles")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3054.json, and this resource appears in /discovery/resources and /discovery/search.