---
title: Audio Extractor from Video Job API
slug: video-audio-extract
url: https://apyverse.com/apyhub/service/video-audio-extract
provider: ApyHub
categories: [Audio Processing, File Conversion, File Manipulation]
tags: [video-to-audio, audio-extraction, media-processing, file-conversion, job-status]
auth: api_key
---

# Audio Extractor from Video Job API

Extract audio from a video file or URL and get a job ID back. Poll for a URL to the finished MP3, WAV, AAC, OGG, FLAC, WMA, or AC3 output.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/job/extract/video/audio/file` | What it does Submits a video file for asynchronous audio extraction and returns a job identifier im… | 400 |
| POST | `/job/extract/video/audio/url` | What it does Submits an async job to extract audio from a video URL. The request takes the source v… | 400 |
| GET | `/job/extract/video/audio/status/:job_id` | What it does Checks the status of an audio extraction job by job ID and returns the job record in a… | 5 |

## About

## What it does
Video Audio Extractor turns a video file or a video URL into an audio extraction job, then gives you a job ID to poll until the output is ready. Use it when you need to pull audio from an uploaded clip or a remote MP4 without handling media processing yourself.

Send a binary `video` file to `POST /file-to-json`, or pass a `video_url` to `POST /url-to-json`. Both endpoints accept optional `duration`, `full_audio`, `start_time`, and `output_format` settings so you can extract a short clip or run from a chosen offset to the end of the file. Supported output formats are `mp3`, `wav`, `aac`, `ogg`, `flac`, `wma`, and `ac3`. Each submission can also include `persistent` as a query parameter.

The response returns a `job_id` immediately. Check `GET /jobs/:job_id` to see whether the job is `pending`, `successful`, or `failed`. When the job succeeds, the status response includes a `url` for the extracted audio file. This fits workflows like media ingestion, clipping podcast audio from video, or generating audio assets for later transcription and review.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyverse.com/apyhub/service/video-audio-extract
