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

# Lookup

> Lookup a property value from a record

## Overview

The `lookup` transformation retrieves a property value from a record (object). It returns the value of the specified property as a string.

## Syntax

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
lookup(<variable>, property="")
```

## Parameters

| Parameter  | Type   | Required | Description                                  |
| ---------- | ------ | -------- | -------------------------------------------- |
| `variable` | object | Yes      | The record/object to look up a property from |
| `property` | string | Yes      | The property name to retrieve                |

## Examples

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
lookup(<variable>, property="name")
lookup(<variable>, property="email")
```
