---
title: "Get Input Progress"
method: GET
path: "/inputs/{input_id}/progress"
tags: ["Inputs"]
---

# Get Input Progress

`GET /inputs/{input_id}/progress`

Get the progress of processing for the input file. The current_event_progress number is the percent complete of the current event – so if the event is Downloading, and current_event_progress is 99.3421, then the file is almost finished downloading, but hasn't started Inspecting yet.

The progress number is the overall percentage of completion for the input. The progress number is the percent complete of the current event – so if the event is Downloading, and progress is 99.3421, then the file is almost finished downloading, but hasn't started Inspecting yet.

Valid states include:
- `waiting`
- `pending`
- `assigning`
- `processing`
- `finished`
- `failed`
- `cancelled`

Events include:
- `downloading`
- `inspecting`

If you're getting a 404 to an input progress request, make sure that you're using the input ID, not the job or output ID, and make sure your API key is correct. A 404 means that we didn't find an input file with the specified ID for the account linked to the provided API key.

## Path parameters

- `input_id` string, required

## Query parameters

- `page` integer
- `per_page` integer

## Headers

- `Content-Type` string, required
- `Zencoder-Api-Key` string, required

## Response `200`

Input processing progress.

- InputProgressResponse — Progress in the processing of a job input file
  - `id` integer — The input id, an integer in the 64-bit range.
  - `state` 'waiting' | 'pending' | 'assigning' | 'processing' | 'finished' | 'failed' | 'cancelled' — The state of input processing
  - `progress` number — Input processing percentage completed
  - `current_event` 'downloading' | 'inspecting' — The current activity
  - `current_event_progress` number — The current activity percentage completed

## Other responses

- `403` — Forbidden
- `422` — Invalid query parameters
- `500` — Server error

---

[API](https://skmtc.dev/brightcovelearning/apis/zencoder-api.md) · [All operations](https://skmtc.dev/brightcovelearning/apis/zencoder-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/brightcovelearning/zencoder-api/revisions/1c9ad03e166e/schema)
