GET/api/v1/profile/visits| Name | Type | Required | Description |
|---|---|---|---|
| start | Number | ✅ Yes | Index to start pagination from. |
| count | Number | ✅ Yes | Number of records to fetch in a single API response. |
| Name | Type | Required | Description |
|---|---|---|---|
| x-api-key | String | ✅ Yes | API key provided by the Networked Team. |
{
"data": {
"start": 0,
"count": 4,
"nextStart": false,
"content": [
{
"userId": "6825b1fa60302800123aa1c6",
"name": "may14_user01",
"title": " Software Developer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6825b1fa60302800123aa1c6/file_1747301073226_Image Pasted at 2025-5-6 18-31.png",
"industries": "",
"timeStamp": 1749032971585
},
{
"userId": "6787842723126f0012a92cfc",
"name": "jan15_user06",
"title": "Test",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787842723126f0012a92cfc/file_1747399667815_image_cropper_1747399664100.jpg",
"industries": "",
"timeStamp": 1749032847244
},
{
"userId": "6683ae18795e3b0012ec9a40",
"name": "Abhi Chaturvedi",
"title": " Full stack developer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6683ae18795e3b0012ec9a40/file_1727085276402_recording_thumbnail.png",
"industries": "",
"timeStamp": 1748963923392
},
{
"userId": "67fcab65887e750012f11bb6",
"name": "april14_user01",
"title": " Software Developer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-67fcab65887e750012f11bb6/file_1744708481745_Screenshot 2025-04-12 at 1.22.36 AM.png",
"industries": "",
"timeStamp": 1747818848084
}
]
},
"error": false,
"message": "Success"
}
| Field | Type | Description |
|---|---|---|
| start | Number | The offset index where the current fetch starts. |
| count | Number | Number of records returned. |
| nextStart | Boolean | Indicates whether more records are available for pagination. |
| content | Array | Array of users who visited the profile. |
VisitEntry Object| Field | Type | Description |
|---|---|---|
| userId | String | ID of the user who visited the profile. |
| name | String | Name of the visiting user. |
| title | String | Professional title of the user. |
| image | String | URL of the user's profile image. |
| industries | String | Industry information (empty string if not provided). |
| timeStamp | Number | Time of the visit in Unix timestamp format (ms). |
start and count to avoid performance issues.curl --location 'https://backend.networked.co/api/v1/profile/visits?start=0&count=10' \
--header 'x-api-key: <your-api-key>'{
"data": {
"start": 0,
"count": 4,
"nextStart": false,
"content": [
{
"userId": "6825b1fa60302800123aa1c6",
"name": "may14_user01",
"title": " Software Developer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6825b1fa60302800123aa1c6/file_1747301073226_Image%20Pasted%20at%202025-5-6%2018-31.png",
"industries": "",
"timeStamp": 1749032971585
},
{
"userId": "6787842723126f0012a92cfc",
"name": "jan15_user06",
"title": "Test",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787842723126f0012a92cfc/file_1747399667815_image_cropper_1747399664100.jpg",
"industries": "",
"timeStamp": 1749032847244
},
{
"userId": "6683ae18795e3b0012ec9a40",
"name": "Abhi Chaturvedi",
"title": " Full stack developer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6683ae18795e3b0012ec9a40/file_1727085276402_recording_thumbnail.png",
"industries": "",
"timeStamp": 1748963923392
},
{
"userId": "67fcab65887e750012f11bb6",
"name": "april14_user01",
"title": " Software Developer",
"image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-67fcab65887e750012f11bb6/file_1744708481745_Screenshot%202025-04-12%20at%201.22.36%E2%80%AFAM.png",
"industries": "",
"timeStamp": 1747818848084
}
]
},
"error": false,
"message": "Success"
}