> ## 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.

# Tracking config: domains, pages, script, credit limit

> The Settings > Website state in one response: the tracked domains and page paths, the HTML script tag to install in the site's head (null when the plan includes no website intent) and the monthly deanonymization credit budget — `credits.limit` is the monthly cap (null when uncapped) and `credits.used` the credits spent so far. An account that has never set tracking up reads back empty rather than 404. Rate limit: 30 requests per minute, 2000 per day.

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

Requires one of the following token scopes: intent.



## OpenAPI

````yaml /openapi.json get /business/website-tracking
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/website-tracking:
    get:
      tags:
        - Website intent
      summary: 'Tracking config: domains, pages, script, credit limit'
      description: >-
        The Settings > Website state in one response: the tracked domains and
        page paths, the HTML script tag to install in the site's head (null when
        the plan includes no website intent) and the monthly deanonymization
        credit budget — `credits.limit` is the monthly cap (null when uncapped)
        and `credits.used` the credits spent so far. An account that has never
        set tracking up reads back empty rather than 404. Rate limit: 30
        requests per minute, 2000 per day.


        Errors:

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


        Requires one of the following token scopes: intent.
      operationId: getWebsiteTracking
      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:
                  tracking:
                    type: object
                    properties:
                      domains:
                        type: array
                        items:
                          type: string
                      trackedPages:
                        type: array
                        items:
                          type: string
                      script:
                        type:
                          - string
                          - 'null'
                      credits:
                        type: object
                        properties:
                          limit:
                            type:
                              - integer
                              - 'null'
                          used:
                            type: integer
                        required:
                          - limit
                          - used
                    required:
                      - domains
                      - trackedPages
                      - script
                      - credits
                required:
                  - tracking
              example:
                tracking:
                  domains:
                    - brightpay.com
                  trackedPages:
                    - pricing
                    - home
                    - product
                    - faq
                  script: >-
                    <script type="text/javascript"
                    src="https://a.usbrowserspeed.com/cs?pid=ddae2e0bce828a30a7b24f94f87290780f71120eaf9f11353f234c3bd86512d3&puid=%7B%22userId%22%3A%2268540f8bb55e99628170c757%22%2C%22env%22%3A%22dev%22%7D"></script>
                  credits:
                    limit: 9999999
                    used: 1395
        '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.

````