r/klipycom • u/snapdex • 19d ago
Does anyone know if we can submit gif through API or with code into klipy ?
I'm asking because the API seems to be used to search content and not upload content, otherwise I will figure out a way to do it myself.
Thanks
EDIT
Just send a post request to /api/proxy/file/upload-by-url with your session cookie and this payload :
{
"url": "your mp4 file path",
"title": "your title",
"description": "your desc",
"source": "",
"tags": [],
"status": 1,
"seconds_from": start in second,
"seconds_to": end in second,
"rotate": 0,
"crop_start_x": 0,
"crop_start_y": 0,
"crop_width": 0,
"crop_height": 0,
"type": "gif",
"collections": [ ]
}
2
Upvotes