import requests

url = "https://pquotes.p.rapidapi.com/api/quote"

payload = {"topic": "fun"}
headers = {
	"content-type": "application/json",
	"X-RapidAPI-Key": "f0aeb431bamshc18b522b64e7383p102f67jsnea4673acfc55",
	"X-RapidAPI-Host": "pquotes.p.rapidapi.com"
}

response = requests.request("POST", url, json=payload, headers=headers)

print(response.text)
{"quote":"don't try to catch a flying bird using a ladder","by":"Sandosh pandit"}