---
title: "Feature: #87525 - Add api=1 option in VimeoRenderer"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-87525"
source: "Changelog/10.1/Feature-87525-AddApi1OptionInVimeoRenderer.rst"
typo3-version: "10.1"
typo3-major: 10
type: "feature"
issue: 87525
forge: "https://forge.typo3.org/issues/87525"
tags: ["Fluid", "TypoScript", "ext:fluid_styled_content"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #87525 - Add api=1 option in VimeoRenderer {#feature-87525}

See [forge#87525](https://forge.typo3.org/issues/87525)

## Description {#description}

The parameter api=1 in Vimeo video urls allows API interactions with the video player,
for example adding a button to interact with a video on your page.
The configuration now allows setting this parameter when rendering Vimeo videos in TYPO3.

## Impact {#impact}

Setting the parameter `api = 1` either in TypoScript or Fluid will append `api=1` to the Vimeo video URL.

## Usage {#usage}

Set the parameter via TypoScript for EXT:fluid_styled_content by using:

```typoscript
lib.contentElement.settings.media.additionalConfig.api = 1
```

When using Fluid use the Fluid media ViewHelper and `additionalConfig` to set the argument:

```html
<f:media
      file="{file}"
      alt="{file.properties.alternative}"
      title="{file.properties.title}"
      additionalConfig="{api: 1}"
/>
```
