GET
/v1/modelsList models
Returns every validated model owned by the authenticated workspace.
Request
curl https://api.flashml.dev/v1/models \
-H "Authorization: Bearer $FLASHML_API_KEY"Response
{
"models": [
{
"id": "6f2c8d9a-2e8d-4ed3-b9f2-9f3d2d2d7e8f",
"name": "sentiment-classifier",
"modality": "text",
"task": "classification",
"size_mb": 42,
"s3_key": "user-id/sentiment-classifier-v1.tar.gz",
"version": 1,
"status": "validated",
"user_id": "user-id",
"created_at": "2026-05-21T16:48:03.120000+00:00"
}
]
}