Sketchub API
Home
  • Introduction
  • Reference
  • Changelog
  • 📘Documentation (v3)
    • Announcements
    • Meta Data
    • Projects
      • Category
      • Project Details
      • Project List
      • Project Types
    • Users
      • Find Username
      • Search Profile
      • View Profile
  • 📘V2 (Deprecated)
    • Introduction
    • Login
    • Like/Unlike Project
    • Comments
    • Download
  • For Sketchware
  • 💬Feedback
Powered by GitBook
On this page

Was this helpful?

  1. Documentation (v3)
  2. Users

View Profile

Get User profile

POST https://sketchub.in/api/v3/get_user_profile

Obtain user profile details by using their username or just user ID.

Request Body

Name
Type
Description

api_key

string

Web API Key provided by Sketchub. For getting one, check introduction page.

user_name

string

Unique username of the Sketchub account

user_id

integer

Use if user_name is unavailable

  "status": "success",
  "message": "The user account exists",
  "uid": "400",
  "username": "ThatCoolUser",
  "badge": "0",
  "about": "A cool bio",
  "country": "India",
  "countryCode": "IN",
  "profilepic": "https:\/\/sketchub.in\/storage\/user_avatars\/400.png",
  "is_banned": "0",
  "ban_reason": "",
  "total_likes": "32",
  "total_downloads": "346",
  "total_public_projects": "1",
  "total_verified_projects": "0",
  "total_editor_choice_projects": "0"
}
PreviousSearch ProfileNextIntroduction

Last updated 1 year ago

Was this helpful?

📘