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

Upload images to a Dataset

PreviousCreate DatasetNextGet Annotation Status
๐Ÿ”

Upload more images to a dataset

post
Body
dataset_idintegerRequired
project_namestringRequired
imagesstring ยท binary[]Required
Responses
201
Images uploaded successfully
post
POST /upload_images_to_dataset/ HTTP/1.1
Host: api.jtheta.ai
Content-Type: multipart/form-data
Accept: */*
Content-Length: 58

{
  "dataset_id": 1,
  "project_name": "text",
  "images": [
    "binary"
  ]
}
201

Images uploaded successfully

No content