JSON Storage API

Store and retrieve JSON via REST. No auth, no setup. Just POST and go.

API Reference

POST /api/json

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"}'

GET /api/json/:id

Retrieve stored JSON by ID.

curl https://pramod.ftp.sh/api/json/abc123

PUT /api/json/:id

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 /api/json/:id

Delete a stored JSON object.

curl -X DELETE https://pramod.ftp.sh/api/json/abc123

๐Ÿงช Try It Live


โšก Instant

No setup. POST JSON, get an endpoint.

๐Ÿ”“ No Auth

No API keys. No sign-up. Just use it.

๐Ÿ“Š 100KB Limit

Store up to 100KB per object. Plenty for prototypes.

๐Ÿ”„ Full CRUD

Create, Read, Update, Delete. REST done right.