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

# Website intent analytics roll-up

> Website intent insights for the token owner's team over the window: headline metrics (visits, distinct companies, distinct people and the high-confidence share), the zero-filled visitors-over-time series (daily MM/DD buckets for 7d, ISO-week Wxx buckets for 30d and 90d) and the top 10 visiting companies and people by visit count, in the same row shape as GET /business/website-visitors. Needs website tracking to be set up: an account with no tracking record answers 404. Rate limit: 20 requests per minute, 1000 per day.

Errors:
- `404` `WEBSITE_TRACKING_NOT_SET_UP` — This account has no website-tracking record (no Webtraffic entry, or the caller resolves to no team owner) — set website tracking up in the app first.
- `422` `VALIDATION_FAILED` — `range` was sent and is not one of 7d, 30d or 90d.
- `429` `RATE_LIMITED` — Per-user quota for this endpoint family exceeded (20 per minute, 1000 per day); retry after the Retry-After / RateLimit-Reset seconds.

Requires one of the following token scopes: analytics.



## OpenAPI

````yaml /openapi.json get /business/analytics/website-intent
openapi: 3.1.0
info:
  title: Fuse Business API
  version: 1.0.0
  description: >-
    External API for lists, campaigns, prospect search and contacts.
    Authenticate with your API token as HTTP Basic. All paths are under /api/v1.
servers:
  - url: https://api.tryfuse.ai/api/v1
    description: Production
security:
  - basicAuth: []
tags:
  - name: Lists
  - name: Custom columns
  - name: Smart columns
  - name: Exports
  - name: Campaigns
  - name: Knowledge hubs
  - name: Analytics
  - name: Website intent
  - name: Account
  - name: Prospect search
  - name: Campaign steps
  - name: Scheduled sends
  - name: Campaign templates
  - name: Agents
  - name: Research
  - name: Company search
  - name: Saved searches
  - name: Folders
  - name: Contacts
paths:
  /business/analytics/website-intent:
    get:
      tags:
        - Analytics
      summary: Website intent analytics roll-up
      description: >-
        Website intent insights for the token owner's team over the window:
        headline metrics (visits, distinct companies, distinct people and the
        high-confidence share), the zero-filled visitors-over-time series (daily
        MM/DD buckets for 7d, ISO-week Wxx buckets for 30d and 90d) and the top
        10 visiting companies and people by visit count, in the same row shape
        as GET /business/website-visitors. Needs website tracking to be set up:
        an account with no tracking record answers 404. Rate limit: 20 requests
        per minute, 1000 per day.


        Errors:

        - `404` `WEBSITE_TRACKING_NOT_SET_UP` — This account has no
        website-tracking record (no Webtraffic entry, or the caller resolves to
        no team owner) — set website tracking up in the app first.

        - `422` `VALIDATION_FAILED` — `range` was sent and is not one of 7d, 30d
        or 90d.

        - `429` `RATE_LIMITED` — Per-user quota for this endpoint family
        exceeded (20 per minute, 1000 per day); retry after the Retry-After /
        RateLimit-Reset seconds.


        Requires one of the following token scopes: analytics.
      operationId: getWebsiteIntentAnalytics
      parameters:
        - name: range
          in: query
          required: false
          description: >-
            Rolling window ending now: 7d, 30d (default) or 90d, i.e. the
            roll-up covers the last 7, 30 or 90 days; time-series bucket sizes
            (daily, weekly, monthly) are chosen from the window length.
          schema:
            type: string
            enum:
              - 7d
              - 30d
              - 90d
            default: 30d
            description: >-
              Rolling window ending now: 7d, 30d (default) or 90d, i.e. the
              roll-up covers the last 7, 30 or 90 days; time-series bucket sizes
              (daily, weekly, monthly) are chosen from the window length.
      responses:
        '200':
          description: Success
          headers:
            RateLimit-Limit:
              schema:
                type: integer
              description: Requests permitted in the current window.
            RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            RateLimit-Reset:
              schema:
                type: integer
              description: Seconds until the current window resets.
          content:
            application/json:
              schema:
                type: object
                properties:
                  range:
                    type: string
                    enum:
                      - 7d
                      - 30d
                      - 90d
                  metrics:
                    type: object
                    properties:
                      totalVisits:
                        type: integer
                      uniqueCompanies:
                        type: integer
                      uniquePeople:
                        type: integer
                      highConfidenceVisits:
                        type: integer
                    required:
                      - totalVisits
                      - uniqueCompanies
                      - uniquePeople
                      - highConfidenceVisits
                  timeSeries:
                    type: array
                    items:
                      type: object
                      properties:
                        date:
                          type: string
                        companies:
                          type: integer
                        people:
                          type: integer
                      required:
                        - date
                        - companies
                        - people
                  topVisitors:
                    type: object
                    properties:
                      companies:
                        type: array
                        items:
                          type: object
                          properties:
                            companyName:
                              type:
                                - string
                                - 'null'
                            companyWebsite:
                              type:
                                - string
                                - 'null'
                            companyIndustry:
                              type:
                                - string
                                - 'null'
                            companySize:
                              type:
                                - string
                                - 'null'
                            companyLinkedin:
                              type:
                                - string
                                - 'null'
                            personName:
                              type:
                                - string
                                - 'null'
                            personLinkedin:
                              type:
                                - string
                                - 'null'
                            department:
                              type:
                                - string
                                - 'null'
                            location:
                              type:
                                - string
                                - 'null'
                            count:
                              type: integer
                            lastVisitDate:
                              type:
                                - string
                                - 'null'
                            confidenceInterval:
                              type:
                                - string
                                - 'null'
                              enum:
                                - high
                                - moderate
                                - low
                                - null
                            page:
                              type:
                                - string
                                - 'null'
                          required:
                            - companyName
                            - companyWebsite
                            - companyIndustry
                            - companySize
                            - companyLinkedin
                            - personName
                            - personLinkedin
                            - department
                            - location
                            - count
                            - lastVisitDate
                            - confidenceInterval
                            - page
                      people:
                        type: array
                        items:
                          type: object
                          properties:
                            companyName:
                              type:
                                - string
                                - 'null'
                            companyWebsite:
                              type:
                                - string
                                - 'null'
                            companyIndustry:
                              type:
                                - string
                                - 'null'
                            companySize:
                              type:
                                - string
                                - 'null'
                            companyLinkedin:
                              type:
                                - string
                                - 'null'
                            personName:
                              type:
                                - string
                                - 'null'
                            personLinkedin:
                              type:
                                - string
                                - 'null'
                            department:
                              type:
                                - string
                                - 'null'
                            location:
                              type:
                                - string
                                - 'null'
                            count:
                              type: integer
                            lastVisitDate:
                              type:
                                - string
                                - 'null'
                            confidenceInterval:
                              type:
                                - string
                                - 'null'
                              enum:
                                - high
                                - moderate
                                - low
                                - null
                            page:
                              type:
                                - string
                                - 'null'
                          required:
                            - companyName
                            - companyWebsite
                            - companyIndustry
                            - companySize
                            - companyLinkedin
                            - personName
                            - personLinkedin
                            - department
                            - location
                            - count
                            - lastVisitDate
                            - confidenceInterval
                            - page
                    required:
                      - companies
                      - people
                required:
                  - range
                  - metrics
                  - timeSeries
                  - topVisitors
              example:
                range: 7d
                metrics:
                  totalVisits: 1518
                  uniqueCompanies: 182
                  uniquePeople: 47
                  highConfidenceVisits: 206
                timeSeries:
                  - date: 08/18
                    companies: 76
                    people: 13
                  - date: 08/19
                    companies: 68
                    people: 7
                topVisitors:
                  companies:
                    - companyName: Rivian
                      companyWebsite: rivian.com
                      companyIndustry: Transportation
                      companySize: 10000+
                      companyLinkedin: https://www.linkedin.com/company/rivian
                      personName: null
                      personLinkedin: null
                      department: software
                      location: united states
                      count: 624
                      lastVisitDate: '2026-08-25'
                      confidenceInterval: low
                      page: null
                  people:
                    - companyName: u.s. department of health and human services (hhs)
                      companyWebsite: hhs.gov
                      companyIndustry: Healthcare
                      companySize: 10000+
                      companyLinkedin: https://www.linkedin.com/company/hhsgov
                      personName: April Bowen
                      personLinkedin: linkedin.com/in/april-bowen-worsley-6b156a32
                      department: manufacturing
                      location: united states
                      count: 212
                      lastVisitDate: '2026-08-23'
                      confidenceInterval: moderate
                      page: /pricing
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - basicAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type:
                - string
                - 'null'
            request_id:
              type:
                - string
                - 'null'
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Your API token (`af_…`) as the Basic-auth username, with an empty
        password.

````