Home DocumentationGetting Started

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.

API Keys

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:

Headers
Authorization: Bearer sk-live-your-api-key-here

Quick Start Example

Here's a simple example of how to remove the background from an image using cURL:

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:

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.