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

# Available Objects

> Data objects available in Fourthwall Custom Code sections

Custom Code sections have access to a specific set of objects that provide data about your shop's collections, products, and membership tiers.

## Available objects

<CardGroup cols={2}>
  <Card title="collection" icon="layer-group" href="/html/objects/collection">
    Product collections and their contents.
  </Card>

  <Card title="product" icon="box" href="/html/objects/product">
    Individual product data, pricing, images, and variants.
  </Card>

  <Card title="membership_tiers" icon="users" href="/html/objects/membership-tiers">
    Membership tier information, pricing, and features.
  </Card>
</CardGroup>

## Quick overview

| Object             | Description              | Access                                 |
| ------------------ | ------------------------ | -------------------------------------- |
| `collections`      | All product collections  | `collections[handle]`                  |
| `product`          | Product data             | Iterating over a collection's products |
| `membership_tiers` | All membership tiers     | Direct global access                   |
| `section`          | Current section instance | `section.id`                           |
