Send real requests. See real responses.
Once the hosted demo clicks for you, switch the mode toggle to "My local server" and hit your own FastAPI. Steps:
week30_product_lab directorypython3 -m venv venv && source venv/bin/activatepip install -r api/requirements.txtuvicorn api.main:app --reloadclass.wize73.com. Or just open http://localhost:8000/docs in a new tab and use FastAPI's built-in Swagger UI.
Every successful /v1/predict returns the same fields. Clients can parse without defensive code.
The 422 isn't plain text — it's JSON with a detail array telling you exactly what failed and where.
Response panel shows elapsed ms. Watch how /v1/predict compares to /health.
2xx = success. 4xx = your fault. 5xx = server's fault. Never return 200 with an error body.