> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wrkout.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Images & Videos

> Images and Videos provided by the Wrkout API

The Wrkout API provides a variety of media types to help you build your applications. These media types include images and videos.

The availability of these media types depends on your subscription plan.

## Images

There will always be at **least 2 images** available for each exercise.

The first image will show the starting position of the exercise, and the second image will show the ending position.

```json theme={null}
{
  //...exercise data,
  "premiumImages": [
    "https://api.wrkout.xyz/images/:exerciseId/premium/:imageName-1.png",
    "https://api.wrkout.xyz/images/:exerciseId/premium/:imageName-2.png",
  ]
}
```

#### Free Tier

If you are subscribed to the Free tier, you will **not** have access to any images. Thus the `premiumImages` field will be `null`.

#### Entry, Basic and Pro Tiers

If you are subscribed to the Entry, Basic or Pro tiers, you will have access to `premiumImages` that is an array of URLs.

These images are **watermarked**, but can be used in commercial projects.

#### Business and Enterprise Tiers

If you are subscribed to the Business or Enterprise tiers, you will have access to un-watermarked images.

## Videos

There will always be at **least 1 video** available for each exercise.

```json theme={null}
{
  //...exercise data,
  "premiumVideos": [
    "https://api.wrkout.xyz/videos/:exerciseId/premium/:videoName.mp4",
  ]
}
```

#### Free, Entry, Basic and Pro Tiers

If you are subscribed to the Free, Entry, Basic or Pro tiers, you will **not** have access to any videos. Thus the `premiumVideos` field will be `null`.

#### Business and Enterprise Tier

If you are subscribed to the Business or Enterprise tiers, you will have access to `premiumVideos` that is an array of URLs, similar to the `premiumImages`.
