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

# Website Environment API

> API reference for synthetic website interactions

The Website Environment API provides endpoints for session management, verification, and state inspection across all synthetic websites (Calendr, Cloudfile, Shopora).

<Info>
  Contact Scale to receive Docker images for your environments. Images are distributed as tar files that can be loaded into your local Docker registry.
</Info>

## Endpoints

<CardGroup cols={2}>
  <Card title="Reset Session" icon="rotate" href="/api-reference/websites/reset">
    Initialize or reset a session with data pack
  </Card>

  <Card title="Verifier" icon="check" href="/api-reference/websites/verifier">
    Run verification checks
  </Card>

  <Card title="Transform to Variable Dates" icon="calendar-arrow-up" href="/api-reference/websites/task">
    Convert absolute to variable dates (Calendr)
  </Card>

  <Card title="Transform to Absolute Dates" icon="calendar-arrow-down" href="/api-reference/websites/prompt">
    Convert variable to absolute dates (Calendr)
  </Card>
</CardGroup>

## Base URL

Each synthetic website runs on its own port:

* **Default**: `http://localhost:3000`
* Configure different ports when running multiple environments

## Session Access

After initializing a session, access the website with your session ID:

```
http://localhost:3000?session_id=your-session-id
```

## Environment-Specific Data Packs

| Environment | Available Data Packs               |
| ----------- | ---------------------------------- |
| Calendr     | `professional-swe`, `default`      |
| Cloudfile   | `professional-drive-v2`, `default` |
| Shopora     | `default` (loads automatically)    |

## Next Steps

<CardGroup cols={2}>
  <Card title="GUI Tutorial" icon="graduation-cap" href="/tutorials/gui-agent">
    Learn to use website environments
  </Card>

  <Card title="Website Reference" icon="globe" href="/environments/website/overview">
    Explore available websites
  </Card>
</CardGroup>
