NRI Backend

from fastapi import FastAPI

app = FastAPI()

@app.get("/api/v1/health/")
def health_check():
    return {"status": "ok"}

Interactive API Docs

Explore this API's endpoints with the interactive Swagger UI. Test requests and view response schemas in real-time.

Open Swagger UI →

Health Check

Confirm the service, environment, and version currently deployed.

Check Health →