Premiere API

Overview

The following line allows you access to the Premiere DOM via UXP.

Copied to your clipboard
const app = require('premierepro');

From here, you can open documents, modify them, run menu items, and more.

Minimum Version

You will now find minimum version information on properties and methods. This version tag corresponds to the version of Premiere where the member was introduced or last updated significantly. For properties, you will find a column "MIN VERSION". For methods, the version number appears as a tag to the right of the name.

Synchronous vs Asynchronous

An important difference between ExtendScript (and CEP) and UXP in Premiere is that all ExtendScript calls to Premiere were synchronous. This means they blocked the Premiere UI while they were executing. In UXP, a method call is asynchronous, and does not block the UI thread.

For a smooth transition between the ExtendScript DOM and the UXP DOM, all properties (get and set) in the API were designed to be synchronous and do not need to be awaited. It is worth noting that they are, in the background, asynchronous in nature.

Working with Premiere Objects

Premiere Application

Through the app object, you can access the rest of Premiere's objects and methods.

The currently-active project is obtained like this:

Copied to your clipboard
const project = await app.Project.getActiveProject();

And you can get the active sequence from the project like this:

Copied to your clipboard
const sequence = await project.getActiveSequence();
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2025 Adobe. All rights reserved.