Get a social profile

Reads a person or company profile through a connected account. Use [].id from GET /v1/messaging/connected-accounts as connectedAccountId. For a person, use profileType=person with 'me', items[].participants[].identifier from POST /v1/messaging/threads/search, id returned by this endpoint, data[].author.id from a social-post or comment list, author.id from a single-post response, data[].sender.id from a reaction list, a LinkedIn Classic public profile slug, or an Instagram username. Reuse this endpoint's id with profileType=person or as a social-post authorIdentifier. For a LinkedIn company, use profileType=company with data[].id from POST /v1/messaging/sales-navigator/search/companies or data[].current_positions[].company_id from POST /v1/messaging/sales-navigator/search/people. Company lookup is LinkedIn-only.

POST
/v1/messaging/social-profiles/search

Authorization

apiKeyAuth
x-api-key<token>

API key authentication. Create an API key in your user profile and include it in the x-api-key header.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://loading/api/v1/messaging/social-profiles/search" \  -H "Content-Type: application/json" \  -d '{    "connectedAccountId": "00000000-0000-4000-8000-000000000001",    "identifier": "me",    "profileType": "person"  }'
{
  "object": "User",
  "id": "string",
  "type": "individual",
  "public_identifier": "string",
  "display_name": "string",
  "first_name": "string",
  "last_name": "string",
  "profile_url": "string",
  "public_picture_url": "string",
  "description": "string",
  "specifics": {
    "member_id": "string",
    "network_distance": "string",
    "can_send_inmail": true,
    "relation_request": {
      "object": "string",
      "property1": null,
      "property2": null
    },
    "location": "string",
    "industry": "string",
    "headline": "string",
    "occupation": "string",
    "followers_count": 0,
    "relations_count": 0,
    "shared_relations_count": 0,
    "is_premium": true,
    "is_influencer": true,
    "is_creator": true,
    "is_open_profile": true,
    "is_open_to_work": true,
    "website_url": "string",
    "experience": [
      {
        "company": {
          "name": "string",
          "id": "string",
          "public_identifier": "string",
          "profile_url": "string",
          "property1": null,
          "property2": null
        },
        "job_title": "string",
        "ended_on": "string",
        "property1": null,
        "property2": null
      }
    ],
    "property1": null,
    "property2": null
  },
  "property1": null,
  "property2": null
}
"string"
"string"
"string"
"string"