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

# club

> The club object contains information about the members area.

## Syntax

```liquid theme={null}
{{ club.name }}
```

## Properties

<ParamField path="id" type="string">
  Unique identifier of the members area.
</ParamField>

<ParamField path="name" type="string">
  The name of the members area, configured in members area settings.
</ParamField>

<ParamField path="kind" type="string">
  The type of members area, either "lite" or "full", configured in members area settings.
</ParamField>

<ParamField path="logo" type="string">
  URL to the members area's logo image.
</ParamField>

<ParamField path="language" type="string" default="pt">
  The two-letter code of the language of the members area, configured in members area settings.
</ParamField>

## Scope

It's accessible globally, in any template, section or block.

<Frame>
  ```mermaid theme={null}
  graph TD
      A[Global Context] --> B[club]
      style A fill:#f9f9f9,stroke:#333,stroke-width:2px,color:#333,stroke-dasharray: 5 5
      style B fill:#4B96FF,stroke:#333,stroke-width:1px,color:white,font-weight:bold
      linkStyle 0 stroke:#4B96FF,stroke-width:2px
  ```
</Frame>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "id": "area_123456",
        "name": "Complete Web Developer",
        "kind": "full",
        "logo": "https://example.com/logo.jpg",
        "language": "en"
      }
      ```
    </Tab>
  </Tabs>
</Panel>
