Documentation
SegmentationAPI provides a simple upload-then-segment workflow powered by Meta's SAM 3. Upload media, submit segmentation jobs with text prompts, and retrieve high-quality masks through four REST endpoints.
Quick Start
The integration flow consists of three steps:
- Upload — Request a presigned URL from
POST /v1/uploads/presign, then PUT your file directly to S3. - Segment — Submit the returned task ID(s) with text prompts to
POST /v1/jobsto queue a segmentation job. - Retrieve — Poll
GET /v1/jobs/{jobId}until processing completes, then download masks from the result URLs.