This is a URL shortener written in Python using FastAPI with SQLite3 for persistent storage. Source code on GitHub.

Take it for a test drive using its OpenAPI interface.

Alternatively, interact with it via `curl` from your terminal:

PowerShell:
curl -X 'POST' `
'https://www.timstewart.io/fastapi-demo-url-shortener/?full_url=https://dev.thnr.net' `
-H 'accept: application/json'

*sh:
curl -X 'POST' \
'https://www.timstewart.io/fastapi-demo-url-shortener/?full_url=https://dev.thnr.net' \
-H 'accept: application/json'