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

# Weed Creator Server API

> Server-side API functions for integrating Weed Creator with external scripts.

## API Call without params & without return

```lua theme={null}
exports.script_name:call()
```

## API Call with param & without return

```lua theme={null}
exports.script_name:call(param1)
```

<ParamField path="param1" type="string" required />

## API Call with param & with return

```lua theme={null}
exports.script_name:call(param1)
```

<ParamField path="param1" type="object" required>
  <Expandable title="properties">
    <ParamField path="object_param1" type="string" required />

    <ParamField path="object_param2" type="number" required />
  </Expandable>
</ParamField>

<ResponseField name="return" type="object">
  <Expandable title="properties">
    <ResponseField name="object_return1" type="string" />

    <ResponseField name="object_return2" type="number" />
  </Expandable>
</ResponseField>
