---
title: Convert WebP to AVIF
slug: convert-webp-to-avif-api
url: https://apyverse.com/apyhub/service/convert-webp-to-avif-api
provider: ApyHub
categories: [File Conversion, File Manipulation, Image Processing]
auth: api_key
---

# Convert WebP to AVIF

Convert WebP images to AVIF from a public URL or multipart upload. Get a binary file or a signed download link for delivery pipelines.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/url/download` | What it does Converts a WebP image fetched from a public URL into an AVIF file and returns the conv… | 10 |
| POST | `/url/link` | What it does Converts a WebP image fetched from a public URL into AVIF and returns a signed URL to… | 10 |
| POST | `/multi-part/download` | What it does Converts an uploaded WebP image file to AVIF and returns the converted file as binary… | 10 |
| POST | `/multi-part/link` | What it does Converts an uploaded WebP image to AVIF and returns a JSON object containing a signed… | 10 |

## About

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

Use the URL-based endpoints when the source image is already hosted elsewhere. Send `url` in the request body, and optionally include `output` as a query parameter when you want a named output. If you prefer to upload directly, use the multipart endpoints with `file` and the same optional `output` parameter.

Choose the download variants when your app needs the AVIF file immediately. Choose the link variants when you want a signed URI for later retrieval or to pass the converted image to another service without handling the binary response yourself.

This fits image pipelines where you need smaller, modern image assets for web delivery, CDN processing, or storage migration from WebP to AVIF.

## Usage

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