Store and retrieve JSON via REST. No auth, no setup. Just POST and go.
Store a JSON object. Returns an ID and endpoint URL.
curl -X POST https://pramod.ftp.sh/api/json \
-H "Content-Type: application/json" \
-d '{"name": "Pikachu", "type": "electric"}'
Retrieve stored JSON by ID.
curl https://pramod.ftp.sh/api/json/abc123
Update an existing JSON object.
curl -X PUT https://pramod.ftp.sh/api/json/abc123 \
-H "Content-Type: application/json" \
-d '{"name": "Raichu", "type": "electric"}'
Delete a stored JSON object.
curl -X DELETE https://pramod.ftp.sh/api/json/abc123
No setup. POST JSON, get an endpoint.
No API keys. No sign-up. Just use it.
Store up to 100KB per object. Plenty for prototypes.
Create, Read, Update, Delete. REST done right.