POST
/
v2
/
profiles
/
fetch
    curl \
  --location 'https://bee.theswarm.com/v2/profiles/fetch' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: $API_KEY' \
  --data \
  {
    "ids": [
      "b8d4ba05-5158-4d80-a0a7-c8e650f7c95c"
    ],
    "fields": [
      "connections",
      "lists",
      "notes",
      "tags",
      "profile_info"
    ]
  }
    curl \
  --location 'https://bee.theswarm.com/v2/profiles/fetch' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: $API_KEY' \
  --data \
  {
    "ids": [
      "b8d4ba05-5158-4d80-a0a7-c8e650f7c95c"
    ],
    "fields": [
      "connections",
      "lists",
      "notes",
      "tags",
      "profile_info"
    ]
  }

By default, the response contains the profile connections or team members that are connected to the profile. The API user may specify additional data about the profile in the fields object that accepts the following values:

connectionsList of team members who are connected to the given profile. The connection details are included (see Models > Profile)
tagsTags assigned to the profile
listsLists the profile is assigned to
notesList of notes assigned to the profile. Private notes are not included.
profile_infoDetailed profile data, e.g. work experience, education, etc.

Mind that investorData is no longer allowed in the list of fields to fetch. investor_data form now on is nested in the profile_info. More details in Models > Profile.

To see a full response of the Fetch endpoint see Models > Profile