This is a simple API for uploading files. Send a POST request with your file to the endpoint below to upload it and receive its metadata in JSON format.
Note: This API automatically compresses and resizes large images to make them web-ready.
POST https://ricram.com/filestore/api.php
curl -X POST -F "file=@/path/to/your/image.jpg" "https://ricram.com/filestore/api.php"
Use the HTTP Request node with the following configuration:
POST
https://ricram.com/filestore/api.php
Form-Data
file
{{ $binary.data }}
to reference the incoming file data.{
"status": "success",
"download_link": "https://ricram.com/newuploads/file_1693952461.1234_a1b2c3d4.jpg",
"id": "file_1693952461.1234_a1b2c3d4.jpg",
"file_info": {
"original_name": "my-photo.jpg",
"size_bytes": 256789,
"original_size_bytes": 5242880,
"mime_type": "image/jpeg",
"stored_path": "newuploads/file_1693952461.1234_a1b2c3d4.jpg",
"is_image": true
},
"metadata": { "... EXIF data ..." },
"geolocation": {
"latitude": 34.052235,
"longitude": -118.243683
}
}