Getting Started
Learn how to integrate maskr.io API into your application in minutes.
Authentication
All API requests require authentication using an API key. You can create and manage your API keys from your account dashboard.
Create and manage your API keys from your account settings . Keep your API keys secure and never share them publicly.
Include your API key in the Authorization header of your requests:
Authorization: Bearer sk-live-your-api-key-hereQuick Start Example
Here's a simple example of how to remove the background from an image using cURL:
curl -X POST https://api.maskr.io/v1/services/background-removal \
-H "Authorization: Bearer sk-live-your-api-key-here" \
-F "file=@/path/to/your/image.jpg" Replace sk-live-your-api-key-here with your actual API key.
Available Services
maskr.io provides the following AI-powered image processing services:
Background Removal
Remove backgrounds from images with AI precision
Image Upscaling
Upscale and enhance image resolution
Object Removal
Coming Soon
Object Extraction
Coming Soon
Additional Resources
Documentation In Progress
We're working on comprehensive API documentation with detailed examples, SDKs, and guides. In the meantime, check out our Help Center or try our services directly through the web interface.