---
title: Convert WebP to AVIF API
slug: mono-go-webp-to-avif-conversion
url: https://apyhub.com/apyhub/service/mono-go-webp-to-avif-conversion
provider: ApyHub
categories: [File Conversion, File Manipulation]
tags: [webp-conversion, avif, image-conversion, image-processing, file-conversion]
auth: api_key
---

# Convert WebP to AVIF API

Convert WebP images to AVIF from a public URL or multipart upload. Get either binary file downloads or a signed URL for the converted image.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/url/download` | What it does Converts a WebP image fetched from a publicly accessible URL into an AVIF file and ret… | 30 |
| POST | `/url/link` | What it does Converts a WebP image fetched from a publicly accessible URL into AVIF, then returns t… | 30 |
| POST | `/multi-part/download` | What it does Converts an uploaded WebP file to AVIF and returns the converted file as a binary resp… | 30 |
| POST | `/multi-part/link` | What it does Converts an uploaded WebP file to AVIF and returns a signed URL in the response. The r… | 30 |

## About

## What it does
WebP to AVIF Converter turns a WebP image into an AVIF file. Send either a public image URL or a multipart file upload, and get back the converted image as a download or a signed URL.

Use the URL-based endpoints when the source image is already hosted publicly. Send `body.url`, and choose the `output` query parameter if you want a named output. The service returns either binary file data or a JSON response with a `data` URI, depending on the endpoint you call.

Use the multipart endpoints when you already have the file in your request. Send `body.file`, and again choose between direct download and signed-link responses. That makes it easy to plug into upload flows, media pipelines, or server-side image jobs where you want AVIF output without handling conversion locally.

Typical uses include optimizing product images, preparing web assets for modern browsers, or converting uploaded WebP files before storage or delivery. The API is limited to WebP input and AVIF output, so the request and response format stay predictable.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/apyhub/service/mono-go-webp-to-avif-conversion
