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

# Get Setting

> Returns a single portal setting by name.

# Get Setting

Returns the value of a specific portal configuration setting.

## Authentication

Requires a valid customer bearer token.

## Path Parameters

<ParamField path="name" type="string" required>
  The setting name/key. URL-encoded.
</ParamField>

## Response

<ResponseField name="Name" type="string" required>
  Setting name/key.
</ResponseField>

<ResponseField name="Value" type="string" required>
  Setting value.
</ResponseField>

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

const { resource: setting } = useTypedData(httpClient, endpoints.settings.get('BookingMinDuration'))
```
