Folders vs. Projects in the API

In the Wistia app, the containers that hold your media are called folders. In parts of the Wistia API, the same concept is called a project. They are the same thing — a named container of medias — and the name you'll see depends on which API and which version you're using.

This page explains where each term applies so you can read the API responses and build requests without second-guessing which one to use.

Folders and projects are the same concept

A folder (in the UI) and a project (in older API surfaces) both refer to one container of medias, identified by a hashed ID. There is no behavioral difference — only the name changed over time as the product settled on "folder" as the user-facing term.

You don't need to migrate any data or re-create anything. An account's folders and its projects are the same records; only the labels in the API differ by version.

Which term applies where

SurfaceTerm you'll see
Wistia app (UI)Folder
Data API v1projects resource, project_id / projectId parameter
Data API 2026-01 and laterfolders resource, folder_id parameter
Stats API (all versions)projects resource, projectId parameter

Data API v1

The original Data API uses projects. You'll list containers at /v1/projects, reference a media's container by its project field, and filter or move media with project_id.

GET https://api.wistia.com/v1/projects
GET https://api.wistia.com/v1/medias?project_id=abc123

Data API 2026-01 and later

Starting with the 2026-01 release, the resource was renamed to folders to match the app. The project_id parameter became folder_id, and media responses now carry a folder field instead of project.

GET https://api.wistia.com/v1/folders
GET https://api.wistia.com/modern/medias?folder_id=abc123

For the full list of renamed fields and endpoints, see the Migration Guide: API v1 to API 2026-01.

Stats API — still uses "projects"

The Stats API is the one exception. Its project endpoints were not renamed, even in 2026-01. Use projects and projectId there regardless of which Data API version you're on.

GET https://api.wistia.com/stats/projects/{projectId}

Quick reference

  • Building against Data API v1? Use project / project_id.
  • Building against Data API 2026-01+? Use folder / folder_id.
  • Calling the Stats API? Use project / projectId, always.