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

# Execute Power-Up

> Execute a Power-Up AI action.

Execute a configured Power-Up action with the provided input data.

## Endpoint

```
POST /functions/v1/execute-power-up
```

## Authentication

Requires valid JWT.

## Request Body

```json theme={null}
{
  "power_up_id": "uuid",
  "input_data": {
    "text": "My listing at 123 Main St..."
  }
}
```

## Response

```json theme={null}
{
  "output_data": {
    "result": "Enhanced listing description..."
  },
  "usage_id": "uuid"
}
```
