Image Resizer

Resize an image with a given image URL.

Request Information

GET https://exorion.xyz/api/image-resize

Url Parameters
Name
Value

url

imageurl

size

512


HTTP Headers
Name
Value

Authorization

API_KEY

Content-type

application/json


Code Examples

Request.py
import requests

url = "https://exorion.xyz/api/image-resize"
params = {
    "url": "https://example.com/cat.png",
    "size": 512
}
headers = {
    "Authorization": "API_KEY",
    "Content-type": "application/json"
}

response = requests.get(url, params=params, headers=headers)
print(response.status_code)
print(response.json())

Last updated