APIs
It's easy to create APIs with DjangoKit. Just add a route with a handlers module and add get, post, etc handler functions that return data (e.g., a model instance or a dict).
If you add a route with no page module, it essentially acts as an API, assuming the route's handlers return data in response to JSON requests.
You can also add a page module to an API route and the page will be rendered in response to text/html GET requests (or whenever the Accept header is not set to application/json).