Quick Start
Get up and running with Claid API within minutes
Get your API keys
Make an image processing request
POST /v1/image/edit HTTP/1.1
Host: api.claid.ai
Authorization: Bearer {YOUR_API_KEY}
Content-Type: application/json
{
"input": "https://claid.ai/doc-samples/bag.jpeg",
"operations": {
"resizing": {
"width": 800,
"height": 800,
"fit": "crop"
},
"adjustments": {
"hdr": 60,
"sharpness": 40
}
},
"output": {
"format": {
"type": "jpeg",
"quality": 90
}
}
}

Last updated
