Post method is taking a bit time to respond. Is there any service is available to speed up the time

url = “http://localhost:5005/webhooks/rest/webhook” user_query = json.loads(request.body) payload = json.dumps({“message”:user_query.get(‘message’),“sender”:user_query.get(‘sender’)}) headers = {‘Content-Type’: ‘application/json’} response = requests.request(“POST”, url, headers=headers, data=payload)

I’m using this service for getting the data from rasa opensource server. But it is taking a bit time to respond(More than 2 secs). And if we use actions server it is taking more than 3 secs. to respond. Is there any way to speed up the response like any other url?