Mock API Interactive Documentation

Zero-config endpoints for testing, prototyping, and chaos exploration.

Endpoints

Interactive Playground

Response

Click "Run Request" to see simulated data.

Endpoint URL

GET
https://api.filefusion.app/api/mock-api/posts?delay=0&status=200

Client Implementation

JAVASCRIPT-FETCH Snippet
// Standard Fetch Implementation
fetch('https://api.filefusion.app/api/mock-api/posts?delay=0&status=200', {
  method: 'GET',
  headers: { 'Content-Type': 'application/json' }
})
.then(response => response.json())
.then(data => {
  console.log(data);
})
.catch(error => console.error('Error:', error));

This service is stateless. Data is generated on-the-fly and never stored.