NovaEdge Academy DocsDocs
DocsUsers & Profiles Endpoint

Users & Profiles Endpoint

API v1

Retrieve public profiles, search users, and manage friendships.

Get User Profile

Fetch public profile details by username or user ID.

javascript
GET /api/v1/user/:id
Response:
{
  "success": true,
  "user": {
    "_id": "6791...a1",
    "name": "Prince Kashyap",
    "username": "princeKashyap",
    "role": "student",
    "avatar": { "url": "https://res.cloudinary..." }
  }
}
Was this page helpful?