MEDIUMAPI

DOCUMENTATION.

The Medium Engine provides a robust REST interface to fetch your normalized articles directly into your personal portfolio or project.

Integration Guide

To fetch your blogs, simply use the endpoint below with your Medium username. The response is a cleaned, normalized JSON structure ready for React, Vue, or any other framework.

// Example cURL request
curl -X GET "https://mediumblogsapi.vercel.app/api/posts?username=bhagirath00"

Available Endpoints

GET/api/posts

Fetch all normalized posts for a specific Medium user.

?username=medium
GET/api/stats

Get global engine statistics and database health.

no params
POST/api/sync

Trigger a fresh sync cycle for a specific user.

{ "username": "medium" }

Need help with integration?

Check our GitHub repository for full source code and advanced integration patterns.

Source Repository