🎭 Online Mock API (JSON Storage)
This is a simple JSON hosting service. You can input any JSON data, save it, and get a permanent API link.
✨ Features
- Easy to Use: Paste JSON directly and generate API with one click.
- CORS Support: Cross-origin requests supported by default, call directly from any frontend project.
- Permanent Storage: Secure and persistent data storage, available anytime.
Loading...
📝 Usage Instructions
- Enter your desired JSON data in the input box below.
- Click "Format JSON" to check syntax correctness.
- Click "Save & Generate API".
- Copy the generated API URL and use
fetch()to call it in your code.
// Example Call
fetch('https://api.gongju.dev/api/json-storage/YOUR_ID')
.then(res => res.json())
.then(data => console.log(data));