Celery is a task queue tool.
When making traditional APIs you want your application to respond to incoming requests as quickly as possible because each request uses a worker process until the response is finished
To accomplish this move work off the workers by starting asynchronous jobs as tasks in queue is the straightforward way to improve response times