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

# Analytics (Plausible)

> Pull your website visitor data from Plausible — users, pageviews, sessions, sources, and devices.

Get your website analytics from **Plausible**. These endpoints power the Traffic dashboard's **Analytics** tab when Plausible is your connected provider — users, pageviews, sessions, traffic sources, top pages, and device breakdowns.

<Note>
  You need a **Plausible** integration connected to your team. Connect it from **Settings → Integrations → Analytics & Performance**. Using **Google Analytics 4** instead? See [Analytics (Google Analytics 4)](/docs/api-reference/endpoints/ga-traffic). Using **PostHog**? See [Analytics (PostHog)](/docs/api-reference/endpoints/posthog-traffic).
</Note>

### Filters Parameter

The `filters` query parameter accepts URL-encoded JSON with dimensions and their selected values:

```
filters=[{"dimension":"channel","values":["Organic Search","Direct"]}]
```

Call `GET /integrations/plausible/filter-values` for the available dimension values.

***

## Filter Values

`GET /integrations/plausible/filter-values`

Get the available values for a given filter dimension (used to populate filter dropdowns). Pass `dimension` as a query parameter — one of `channel`, `referrer`, `campaign`, `deviceCategory`, `browser`, `os`, `page`.

***

## Page Counts

`GET /integrations/plausible/analytics`

Get page-level visitor counts across your site.

***

## Traffic Chart

`GET /integrations/plausible/chart`

Get daily visitor, pageview, session, and bounce-rate data for the selected date range.

***

## Top Pages

`GET /integrations/plausible/pages`

Get your most-viewed pages with visitor, entrance, and exit metrics.

***

## Traffic Sources

`GET /integrations/plausible/sources`

Get your traffic sources — external referrers and their sessions and users.

***

## Traffic Channels

`GET /integrations/plausible/channels`

Get your traffic grouped into canonical channels (Direct, Organic Search, Referral, and more) with period-over-period change.

***

## Traffic by Country

`GET /integrations/plausible/countries`

See where your visitors are located geographically.

***

## Traffic by Device

`GET /integrations/plausible/devices`

See the device categories your visitors use.

***

## Traffic by Browser

`GET /integrations/plausible/browsers`

Break your visitors down by browser.

***

## Traffic by Operating System

`GET /integrations/plausible/os`

Break your visitors down by operating system.

***

## Campaigns

`GET /integrations/plausible/campaigns`

Get performance for your UTM-tagged marketing campaigns — sessions, visitors, bounce rate, and average duration.

***

## Average Session Duration

`GET /integrations/plausible/avg-duration`

Get the average session duration with period-over-period comparison.

***

## New vs Returning Visitors

`GET /integrations/plausible/user-type`

See the split between new and returning visitors with period-over-period change.


## OpenAPI

````yaml GET /v3/integrations/plausible/chart/
openapi: 3.0.0
info:
  title: SnowSEO API
  description: API documentation for SnowSEO
  version: 1.0.0
servers:
  - url: https://api.snowseo.com
    description: Production server
security: []
tags:
  - name: Keywords
    description: Keyword research and suggestion end-points
  - name: Onboarding
    description: Brand onboarding and strategy end-points
  - name: Brands
    description: Brand management end-points
  - name: Organizations
    description: Organization and member end-points
  - name: Integrations
    description: Google Search Console and other integrations
  - name: Utilities
    description: Common utility end-points like screenshots and uploads
externalDocs:
  url: https://snowseo.com/docs
  description: Find more info here
paths: {}

````