Skip to main content

🎭 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

  1. Enter your desired JSON data in the input box below.
  2. Click "Format JSON" to check syntax correctness.
  3. Click "Save & Generate API".
  4. 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));