See the moving parts inside one HTTP exchange.
In this interactive Infrastructure lesson from Stencel Academy you don't just read — you type real commands like curl -v https://api.stencel.ai/models, curl https://api.stencel.ai/nope and watch the machine respond on a live, animated map. It is part of the free How Infrastructure Works course.
Builds on: Ports: Many Doors, One Machine.
curl -I https://api.stencel.ai/models — HEAD: headers only — check without downloading the body.curl -s -o /dev/null -w "%{http_code}\n" https://api.stencel.ai/models — Just the status code — perfect for scripts and health checks.curl -X DELETE https://api.stencel.ai/models — Methods are verbs — GET reads, POST creates, DELETE removes. Servers can refuse.