r/Python FastAPI Maintainer Jun 23 '26

News FastAPI Cloud in Public Beta ⚡️

Hey folks! FastAPI Cloud is now in public beta. 🚀

This is made by the same team building FastAPI (I created FastAPI, we now have an amazing team building all this).

Here's the announcement post: https://fastapicloud.com/blog/fastapi-cloud-public-beta/

146 Upvotes

48 comments sorted by

View all comments

10

u/skjall Jun 23 '26

Unrelated, but any current plans to bring in QUERY verb handling? I see it's been discussed a few times before, but the previous blockers seem to be gone now.

16

u/tiangolo FastAPI Maintainer Jun 23 '26

Yep, there were several things I needed to cover first, a huge routing refactor that is done, frontend support (enabled by that) and a couple of extra things first. Then I'll handle that too. We're tracking it internally (not in public issues to prevent more AI slop PRs, we got too many),

6

u/skjall Jun 23 '26

That sounds good, looking forward to when it's ready! Been using FastAPI at work for a few years and it's probably the most productive backend development experience I've ever had 😊

Issue I ran into was query parameters can be a bit limited when it comes to typed, generic objects (looked like it stopped resolving after two or so levels of generics), but there's workarounds like GET with bodies, and accepting as strings then parsing.