Jtheta.ai Docs
Launch Jtheta.ai
  • Getting Started
    • ๐ŸŽฏIntroduction
  • ๐Ÿง‘โ€๐Ÿ’ปLogin/Signup
  • WORKSPACE MANAGEMENT
    • ๐ŸกCreate Workspace
    • ๐Ÿ—๏ธUser Access
    • ๐Ÿ‘จโ€๐Ÿ’ผUser Management
  • PROJECT MANAGEMENT
    • ๐Ÿ“Create Project
    • ๐Ÿ–Š๏ธAnnotation
      • โœˆ๏ธAI Assist
      • โชReview
      • ๐ŸŒ€Types of Annotation
  • ๐Ÿ“–Project Analytics
  • DATASET MANAGEMENT
    • โ—€๏ธRelease Version
    • ๐Ÿ“Manage Dataset
    • ๐Ÿ“ฐClone Dataset
  • Jtheta REST API
    • โš™๏ธJtheta API documentation
    • ๐Ÿ”Get started with REST API
      • Authentication
      • Create Project
      • Create Dataset
      • Upload images to a Dataset
      • Get Annotation Status
      • Request Annotations
      • Delete Project
      • Download Dataset
  • AUTHENTICATION
    • ๐Ÿ”‘ Create JTheta API Key
  • PYTHON SDK
    • JTheta Python SDK
Powered by GitBook
On this page
  1. Jtheta REST API
  2. Get started with REST API

Create Dataset

PreviousCreate ProjectNextUpload images to a Dataset
๐Ÿ”

Create a dataset and upload images

post
Body
dataset_namestringRequired
project_namestringRequired
licensestringOptional
imagesstring ยท binary[]Required
Responses
201
Dataset created and images uploaded
post
POST /create_dataset/ HTTP/1.1
Host: api.jtheta.ai
Content-Type: multipart/form-data
Accept: */*
Content-Length: 82

{
  "dataset_name": "text",
  "project_name": "text",
  "license": "text",
  "images": [
    "binary"
  ]
}
201

Dataset created and images uploaded

No content