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

# Quickstart

> Create a Landryx key and call the property intelligence API.

## 1. Create an account

Sign up at [landryx.com](https://landryx.com/signup). Explorer includes 1,000 monthly credits and does not require a card.

## 2. Create a key

Open **API keys**, name the integration, and copy the secret. Landryx shows the raw key once and stores only an HMAC hash.

```bash theme={null}
export LANDRYX_API_KEY="landryx_..."
```

## 3. Make a request

```bash theme={null}
curl "https://api.landryx.com/v1/parcels?state_code=IL&limit=5" \
  -H "Authorization: Bearer $LANDRYX_API_KEY"
```

## 4. Search active listings

```bash theme={null}
curl "https://api.landryx.com/v1/listings/search?state=AZ&city=Phoenix&status=active&limit=20" \
  -H "Authorization: Bearer $LANDRYX_API_KEY"
```
