😡Insults

Sometimes your roast game ain't it 🤷‍♂️


import requests  

# Set your API key here to authenticate
headers = {"Authorization": "Bearer shard-xxx"}  

# URL for fetching insults.
url = "https://api.shard-ai.xyz/v1/fun/insults?count=1"  

# Send the request to fetch a joke
response = requests.get(url, headers=headers)

# Print all those harsh insults!
print(response.json())

Pro tip: The "count" parameter can be up to 10!


[
    "You are as atrocious as a dishonorable zillion of rotten leech farts"
]

Last updated