Mock API Interactive Documentation

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

Endpoints

Retrieve 10 mock blog posts with realistic titles and metadata to test feed rendering and pagination UI.

Chaos Parameters

0ms

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.