GET
https://search.linkd.inc
/
api
/
enrich
/
scrape
curl --request GET \
  --url https://search.linkd.inc/api/enrich/scrape \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "John Doe",
    "headline": "Software Engineer at Tech Company",
    "location": "San Francisco, CA",
    "connection_count": 500,
    "posts": [
      {
        "urn": "7322384544848834560",
        "text": "Excited to announce...",
        "createdAt": 1679012345,
        "createdAtString": "2024-03-20T12:34:56Z",
        "comments": [
          {
            "isPinned": false,
            "isEdited": false,
            "threadUrn": "thread123",
            "createdAt": 1679012346,
            "createdAtString": "2024-03-20T12:34:57Z",
            "permalink": "https://linkedin.com/...",
            "text": "Congratulations!",
            "author": {
              "name": "Jane Smith"
            }
          }
        ],
        "comment_metadata": {
          "total": 1,
          "totalPage": 1,
          "paginationToken": null
        }
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key must be provided as a Bearer token in the Authorization header

Query Parameters

linkedin_url
string
required

The LinkedIn profile URL to scrape.

Response

200
application/json

Successful scraping operation

The response is of type object.