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. Projects

Project Details

Get project details just from project id (Project id is available on URL when you click on share button in Sketchub app)

Get Project Details

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

Get project details from a project ID.

Request Body

Name
Type
Description

api_key

string

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

project_id

integer

Unique project ID (available on shared link)

{
  "status": "success",
  "message": "Success",
  "id": "9",
  "title": "Left Bar By Error 404",
  "description": "Error 404 Official Project\nLeftBar With Animations.",
  "whatsnew": "",
  "category": "UI & UX",
  "project_type": "sketchware_project",
  "demo_link": "",
  "video_url": "https:\/\/youtu.be\/wYJHCEjfq-g",
  "project_icon": "https:\/\/sketchub.in\/storage\/project_files\/9\/9185755.png",
  "screenshot1": "https:\/\/sketchub.in\/storage\/project_files\/9\/1362614.jpg",
  "screenshot2": "https:\/\/sketchub.in\/storage\/project_files\/9\/6082289.jpg",
  "screenshot3": "",
  "screenshot4": "",
  "screenshot5": "",
  "project_size": "67.3 KB",
  "likes": "32",
  "comments": "1",
  "downloads": "441",
  "uid": "918",
  "timestamp": "1596015139000",
  "published_timestamp": "1596015139000",
  "allow_comments": "1",
  "is_verified": "1",
  "is_editorchoice": "0",
  "user_name": "Pratham",
  "user_profile_pic": "https:\/\/sketchub.in\/storage\/user_avatars\/918.png",
  "user_badge": "10"
}
{
  "status": "failed",
  "message": "The project is private or doesn't exists."
}

The keys in Response tab "screenshot1", "screenshot2", "screenshot3", "screenshot4" and "screenshot5" is deprecated, in next update (Date will be specified) it will be changed to array in this format: { ... screenshots: [ "Screenshot Url", "Screenshot Url", "Screenshot Url", "Screenshot Url", "Screenshot Url" ], ... }

Project details API will never work for private projects.

PreviousCategoryNextProject List

Last updated 3 years ago

Was this helpful?

📘