> For the complete documentation index, see [llms.txt](https://vkfast.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vkfast.gitbook.io/docs/api/execute.md).

# Метод execute

В этом методе API используется магический метод `__invoke`.

```php
$execute = $api->execute;
$response = $execute('return true;');

// или

$response = ($api->execute)('return true;');
```
