Media Management
Vremly handles various media types associated with real estate projects.
Media Types
| Type | Description |
|---|---|
| PHOTO | Still photography (HDR, twilight, aerial) |
| VIDEO | Video walkthroughs and cinematic tours |
| FLOORPLAN | 2D/3D floor plan renderings |
| DOCUMENT | Supporting documents (contracts, notes) |
Uploading Media
Media files are uploaded to a project via the media endpoints:
curl -X POST https://api.vremly.com/media/upload \
-H "Authorization: Bearer <token>" \
-H "x-org-id: <organization-id>" \
-F "projectId=<project-id>" \
-F "file=@photo.jpg" \
-F "type=PHOTO"
Accessing Media
Uploaded media is stored in S3 and served via CloudFront CDN. Each media item includes:
url— Public CDN URL for the assets3Key— Internal storage keytype— Media type (PHOTO, VIDEO, etc.)projectId— Associated project
Listing Media for a Project
curl https://api.vremly.com/media?projectId=<project-id> \
-H "Authorization: Bearer <token>" \
-H "x-org-id: <organization-id>"
Returns all media items associated with the project.