1. User Profile
Networked API Documentation
  • Getting Started
  • User Authentication
    • Add New Users to Community
      POST
    • Send email invites
      POST
  • User Profile
    • User Profile
      GET
    • Profile Visits
      GET
  • Community
    • Features
      • Feature List
    • Directory
      • Users List
      • Roles List
    • Monetization
      • Plans
        • Plans List
    • Feed
      • Polls
        • Create Polls
      • Surveys
        • Create Surveys
      • Post
        • Ask and offer help
          • Post Intro
          • Post Advice
          • Post Recommendation
          • Post Kudos
          • Post Help
        • Feed Post List
        • Post to Feed
        • Get Post Comments
        • Add Comments to Post
      • upload Media
    • Opportunities
      • Company and Services
        • Company and Services List
      • Fundaising Initiatives
        • Fundraising Initiatives List
      • Career Opportunities
        • Career Opportunities
    • Events
      • Event Post
      • Edit Events
      • Delete Event
      • Event List
    • Media Center
      • Get Resources
    • Analytics
      • Community Analytics
    • Newsletter
      • Lists
        • Get newsletter subscriber lists
      • Add newsletter subscribers
      • Get newsletter subscribers
    • Community Details
      GET
    • Spaces List
      GET
  • Webhooks
    • User Webhooks
      • user.joined
      • user.profile.updated
      • user.joined.space
    • Feed Webhooks
      • post.created
      • post.liked
      • post.unliked
      • comment.added
      • post.reported
  • References
    • Response Codes
      GET
    • Model Status
      GET
    • Post Types
      GET
  1. User Profile

Profile Visits

GET
https://backend.networked.co/api/v1/profile/visits

👀 Get Profile Visits#

Fetches a list of users who have visited your profile, along with timestamps and user details.

HTTP Method#

GET

Endpoint#

/api/v1/profile/visits

Query Parameters#

NameTypeRequiredDescription
startNumber✅ YesIndex to start pagination from.
countNumber✅ YesNumber of records to fetch in a single API response.

Headers#

NameTypeRequiredDescription
x-api-keyString✅ YesAPI key provided by the Networked Team.

Sample Response#

{
  "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"
}

Response Interface#


Response Field Descriptions#

FieldTypeDescription
startNumberThe offset index where the current fetch starts.
countNumberNumber of records returned.
nextStartBooleanIndicates whether more records are available for pagination.
contentArrayArray of users who visited the profile.
VisitEntry Object#
FieldTypeDescription
userIdStringID of the user who visited the profile.
nameStringName of the visiting user.
titleStringProfessional title of the user.
imageStringURL of the user's profile image.
industriesStringIndustry information (empty string if not provided).
timeStampNumberTime of the visit in Unix timestamp format (ms).

Reference#

🔗 Response Codes

Notes#

This API helps track engagement by letting users know who viewed their profiles.
Always paginate with start and count to avoid performance issues.
Useful in analytics, user insights, or notifications for profile visit tracking.

Request

Query Params

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://backend.networked.co/api/v1/profile/visits?start=0&count=10' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "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"
}
Modified at 2026-05-15 10:56:33
Previous
User Profile
Next
Community
Built with