FastAPI GET Endpoint

A simple example of how to create a GET route using FastAPI. FastAPI is a modern, fast (high-performance) Python web framework for building APIs.

Python7/8/2025
#python#api#fastapi
Python
from fastapi import FastAPI

app = FastAPI()

@app.get("/ping")
async def ping():
    return {"message": "pong"}
...
Loading comments...