API endpoint
API endpoint
don't ask
@xtdevs
on telegram
Short url Generator for tracking IP
import requests
headers = {
"x-akeno-key": "your api key"
}
payload = {
"original_url": "your link like facebook.com",
"user_email": "your email"
}
url = "https://akeno.randydev.my.id/api/shorten_url"
response = requests.post(url, json=payload, headers=headers).json()
print(response)
Flux & Flux PRO
import requests
url = "https://akeno.randydev.my.id/akeno/fluxai"
data = {
"args": "Generate an image of a futuristic city at sunset"
}
response = requests.post(url, json=data).content
• You also read this Docs-All
Last updated
Was this helpful?