Skip to main content
The page event records whenever a user views a page of your website.

Fields

Apart from the common fields, the page call accepts the following properties:
PropertyTypeDescription
urlStringFull URL of the page.
pathStringPath component of the URL (without query string or hash).
hashStringHash fragment of the URL (e.g., #section).
queryStringQuery string of the URL (without the leading ?).
nameStringName of the page.
categoryStringCategory of the page.
titleStringTitle of the page.

Sample Payload

Here’s the payload of a typical call with most common fields removed:
{
    "type": "page",
    "properties": {
        "url": "https://formo.so/faucets?utm_source=chatgpt.com",
        "path": "/faucets",
        "hash": "",
        "query": "utm_source=chatgpt.com",
        "name": "Faucets",
        "category": "Docs",
        "title": "Free testnet faucets"
    }
}