Skip to main content
GET
/
v1
/
people
/
profile
curl --request GET \
  --url 'https://api.netrows.com/v1/people/profile?username=williamhgates' \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "username": "williamhgates",
  "firstName": "Bill",
  "lastName": "Gates",
  "headline": "Co-chair, Bill & Melinda Gates Foundation",
  "location": "Seattle, Washington",
  "followerCount": 35000000,
  "connectionCount": 500,
  "about": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy...",
  "profilePicture": "https://media.licdn.com/dms/image/...",
  "backgroundImage": "https://media.licdn.com/dms/image/..."
}

Authentication

Authorization
string
required
Bearer token with your API key

Query Parameters

username
string
required
The username of the profile to retrieve (e.g., “williamhgates”)

Response

username
string
The profile username
firstName
string
First name
lastName
string
Last name
headline
string
Professional headline
location
string
Geographic location
followerCount
number
Number of followers
connectionCount
number
Number of connections
about
string
Profile bio/about section
profilePicture
string
URL to profile picture
backgroundImage
string
URL to background image
curl --request GET \
  --url 'https://api.netrows.com/v1/people/profile?username=williamhgates' \
  --header 'Authorization: Bearer YOUR_API_KEY'
{
  "username": "williamhgates",
  "firstName": "Bill",
  "lastName": "Gates",
  "headline": "Co-chair, Bill & Melinda Gates Foundation",
  "location": "Seattle, Washington",
  "followerCount": 35000000,
  "connectionCount": 500,
  "about": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy...",
  "profilePicture": "https://media.licdn.com/dms/image/...",
  "backgroundImage": "https://media.licdn.com/dms/image/..."
}

Cost

This endpoint costs 1 credit per request.

Rate Limits

Subject to your account’s rate limit (10-100 requests/minute based on plan).