# Page

Explore what information is available for pages.

This type represents a specific webpage visited by a user, such as a product page, a blog post, or a landing page.

## Properties

These are the available properties:

- `title`: `string|null`

  The title of the webpage. For example, "Croct Docs".

- `url`: `URI|null`

  The URL of the webpage.

- `path`: `string|null`

  The path component of the webpage URL.

  This property is a shortcut for the URL [`path`](/reference/cql/data-types/web/uri#uri-path-prop).

- `query`: `map<string, string>`

  The query string component of the webpage URL.

  This property is a shortcut for the URL [`query`](/reference/cql/data-types/web/uri#uri-query-prop).

- `anchor`: `string|null`

  The fragment component of the webpage URL.

  This property is a shortcut for the URL [`anchor`](/reference/cql/data-types/web/uri#uri-anchor-prop).

- `referrer`: `string|null`

  The URL of the webpage that linked to the current page, if any.

  This property is a shortcut for the URL [`referrer`](/reference/cql/data-types/web/uri#uri-anchor-prop).
