Image Restoration API
The Image Restoration API effortlessly restores and enhances images, revitalizing old or damaged photos with advanced algorithms.
About
Step into the future of image enhancement with our Image Restoration API, marking a paradigm shift in visual refinement. Seamlessly integrating cutting-edge technology, this solution effortlessly elevates your visual content to new heights, ensuring unparalleled clarity and vibrancy.
Integrating our API into your existing workflows is seamless. Whether you're a seasoned professional photographer, a medical practitioner seeking precise imaging solutions, or an e-commerce platform aiming to showcase products in their best light, our intuitive RESTful endpoints ensure effortless integration with minimal hassle.
From photographs to medical imaging and beyond, our API caters to a diverse array of use cases. Whether you're seeking to eliminate noise, restore lost details, or correct colors to perfection, our versatile solution adapts to meet your every need.
Tailor our API to your unique specifications with customizable parameters and flexible integration options, ensuring it aligns perfectly with your vision. Rest assured, your data is safeguarded with utmost care. Our robust encryption and data protection measures guarantee security and reliability at every step.
Developer Portal: https://api.market/store/magicapi/restoration



Curl Requests and Responses
Process the API
curl -X 'POST' \
'https://api.magicapi.dev/api/v1/magicapi/restoration/restoration' \
-H 'accept: application/json' \
-H 'x-magicapi-key: API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"img": IMAGE_URL,
"scale": 0, // default value
"version": "v1.4" // default value
}'
{
"request_id": REQUEST_ID
}
Get the result
curl -X 'GET' \
'https://api.magicapi.dev/api/v1/magicapi/restoration/predictions/REQUEST_ID' \
-H 'accept: application/json' \
-H 'x-magicapi-key: API_KEY'
{
"status": "succeeded",
"result": "RESULT_URL"
}
Last updated