Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/Pragyat-Nikunj/VidTube/llms.txt

Use this file to discover all available pages before exploring further.

The Healthcheck endpoint lets you verify that the VidTube API server is running and reachable before making other requests. It requires no authentication and always returns a 200 OK when the service is healthy.

GET /api/v1/healthcheck

Check that the API is live. Use this endpoint to probe service availability in monitoring scripts or before running integration tests.
curl https://vidtube-ke5w.onrender.com/api/v1/healthcheck
Response (200)
{
  "statusCode": 200,
  "data": "OK",
  "message": "Healthcheck Passed",
  "success": true
}
The live demo API is hosted on Render’s free tier, which spins down after inactivity. If you get a slow first response (30–60 seconds), the server is cold-starting — subsequent requests will be fast.

Build docs developers (and LLMs) love