Skip to main content
POST
/
v2
/
people
/
paths
Get Person Paths
curl --request POST \
  --url https://api.village.do/v2/people/paths \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "linkedin_url": "https://linkedin.com/in/johndoe"
}
'
{
  "data": {
    "person": {
      "first_name": "<string>",
      "last_name": "<string>",
      "full_name": "<string>",
      "linkedin_url": "<string>",
      "village_url": "<string>",
      "avatar": "<string>"
    },
    "summary": {
      "score": 123,
      "score_label": "<string>",
      "description": "<string>"
    },
    "paths": [
      {
        "type": "intro",
        "summary": {
          "score": 123,
          "score_label": "<string>",
          "description": "<string>"
        },
        "starters": [
          {
            "profile": {
              "first_name": "<string>",
              "last_name": "<string>",
              "linkedin_url": "<string>",
              "headline": "<string>"
            },
            "score": 123,
            "score_label": "<string>",
            "score_description": "<string>",
            "score_meta": [
              {
                "title": "<string>",
                "description": "<string>"
              }
            ]
          }
        ],
        "introducer": {
          "profile": {
            "first_name": "<string>",
            "last_name": "<string>",
            "linkedin_url": "<string>",
            "headline": "<string>"
          },
          "score": 123,
          "score_label": "<string>",
          "score_meta": [
            {
              "title": "<string>",
              "description": "<string>"
            }
          ]
        }
      }
    ],
    "count": 123
  },
  "metadata": {
    "request_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

JWT token obtained from authentication endpoint

Body

application/json

Person identifier - provide one of: linkedin_url or url

linkedin_url
string
required

LinkedIn person profile URL

Minimum string length: 1
Example:

"https://linkedin.com/in/johndoe"

Response

Person paths found successfully

data
object
required

Person paths response with connection information

metadata
object
required