Create Model
Creates a new model using a list of image URLs.
Endpoint
POST /api/modelsParameters
Parameter
Type
Required
Description
curl -X POST \
https://api.deepmode.ai/api/models \
-H 'Authorization: Bearer YOUR_SECRET_API_KEY' \
-H 'Content-Type: multipart/form-data' \
-F 'images=@/path/to/image1.jpg' \
-F 'images=@/path/to/image2.jpg' \
-F 'images=@/path/to/image3.jpg' \
-F 'gender=woman' \
-F 'model_type=amateur'Response
Last updated