---
title: "Apply Face Filters API"
slug: apply-face-filters
url: https://apyhub.com/dosvak/service/apply-face-filters
provider: Dosvak LLC
tags: [image-filters, photo-editing, image-processing, style-effects, color-adjustment]
auth: api_key
---

#  Apply Face Filters API

Apply warm, cool, vivid, mono, or dream filters to an uploaded image. Tune effect intensity and get the edited file back for styling or batch edits.

## Endpoints

| Method | URL | Description | Atoms |
| --- | --- | --- | --- |
| POST | `https://api.eu.apyhub.com/dosvak/apply-face-filters` | What it does Applies a preset color/style filter to an uploaded image and returns the processed ima… | 100 |

## Examples

### Apply preset color/style filters

#### Quickstart

Upload an image and apply a face filter.

```bash
curl -X POST "https://api.eu.apyhub.com/dosvak/apply-face-filters" \
  -H "apy-token: $APY_TOKEN" \
  -F "file=@/path/to/image.jpg"
```

#### What you'll get back

Returns a binary string (`format: "binary"`), so the response body is the filtered image file itself.

```text
<binary image data>
```

## About

## What it does
Apply preset color and style filters to an image and get the edited file back. Face Filters takes a binary image upload, applies one of five modes, and returns the transformed image as binary output.

Send the image file in the request body, then choose a filter mode in the query string: `warm`, `cool`, `vivid`, `mono`, or `dream`. If you want lighter or stronger treatment, set `intensity` from `0` to `1`; the default is `0.38`. That makes it easy to tune the result for social previews, profile photos, product imagery, or batch edits where you need a consistent look.

Use Face Filters when you need a simple image styling step without managing your own image pipeline. It is a direct fit for apps that let users enhance photos, standardize thumbnails, or generate alternate visual variants from the same source file.

## Usage

Base URL: `https://api.eu.apyhub.com` (default region — see
`GET https://apyhub.com/api/public/regions` for the rest).

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/dosvak/service/apply-face-filters
