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

# aris test

> Validate your API key and test connectivity to all ARIS endpoints.

# aris test

Validate your API key and test connectivity to all ARIS endpoints.

```bash theme={null}
npx @aris/cli test
```

## Checks performed

1. **API key** — validates against the ARIS API
2. **Brokerage** — confirms brokerage name and config
3. **Widget config** — fetches colors, position, and style
4. **Listings search** — tests the MLS search endpoint
5. **Featured listings** — tests the featured listings endpoint

## Example output

```
aris test — Verify your ARIS connection

  ✓ API key: Valid
  ✓ Brokerage: Acme Realty
  ✓ Widget config: color: #1e3a8a, position: bottom-right, style: rounded
  ✓ Listings search: 847 listings accessible
  ✓ Featured listings: 12 featured listings

All 5 checks passed.

API key: aris_abc...xyz0
Endpoint: https://dqgynnlsclfbqysauesf.supabase.co/functions/v1/api-router
```

## Exit codes

| Code | Meaning                   |
| ---- | ------------------------- |
| `0`  | All checks passed         |
| `1`  | One or more checks failed |

Use in CI/CD pipelines:

```bash theme={null}
npx @aris/cli test || echo "ARIS connection check failed"
```
