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

# Enrichment analytics roll-up

> Data-enrichment insights for every user whose contacts the token owner can see: distinct contacts whose email was enriched, whose phone was enriched, that were saved, and prospects searched (derived from Prospect Search credit spend), each as a total for the window plus a zero-filled series. Buckets are daily (mode 'day', MM/DD labels) for 7d and ISO-weekly (mode 'week', labelled `Wnn` by ISO week number, e.g. W31) for 30d and 90d. enrichment is null when the aggregation fails. Rate limit: 20 requests per minute, 1000 per day.

Errors:
- `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/enrichment
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/enrichment:
    get:
      tags:
        - Analytics
      summary: Enrichment analytics roll-up
      description: >-
        Data-enrichment insights for every user whose contacts the token owner
        can see: distinct contacts whose email was enriched, whose phone was
        enriched, that were saved, and prospects searched (derived from Prospect
        Search credit spend), each as a total for the window plus a zero-filled
        series. Buckets are daily (mode 'day', MM/DD labels) for 7d and
        ISO-weekly (mode 'week', labelled `Wnn` by ISO week number, e.g. W31)
        for 30d and 90d. enrichment is null when the aggregation fails. Rate
        limit: 20 requests per minute, 1000 per day.


        Errors:

        - `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: getEnrichmentAnalytics
      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
                  enrichment:
                    type:
                      - object
                      - 'null'
                    properties:
                      emailsEnriched:
                        type: object
                        properties:
                          totalSince:
                            type: integer
                          mode:
                            type: string
                            enum:
                              - day
                              - week
                          series:
                            type: array
                            items:
                              type: object
                              properties:
                                date:
                                  type: string
                                total:
                                  type: integer
                              required:
                                - date
                                - total
                        required:
                          - totalSince
                          - mode
                          - series
                      phonesEnriched:
                        type: object
                        properties:
                          totalSince:
                            type: integer
                          mode:
                            type: string
                            enum:
                              - day
                              - week
                          series:
                            type: array
                            items:
                              type: object
                              properties:
                                date:
                                  type: string
                                total:
                                  type: integer
                              required:
                                - date
                                - total
                        required:
                          - totalSince
                          - mode
                          - series
                      contactsSaved:
                        type: object
                        properties:
                          totalSince:
                            type: integer
                          mode:
                            type: string
                            enum:
                              - day
                              - week
                          series:
                            type: array
                            items:
                              type: object
                              properties:
                                date:
                                  type: string
                                total:
                                  type: integer
                              required:
                                - date
                                - total
                        required:
                          - totalSince
                          - mode
                          - series
                      contactsSearched:
                        type: object
                        properties:
                          totalSince:
                            type: integer
                          mode:
                            type: string
                            enum:
                              - day
                              - week
                          series:
                            type: array
                            items:
                              type: object
                              properties:
                                date:
                                  type: string
                                total:
                                  type: integer
                              required:
                                - date
                                - total
                        required:
                          - totalSince
                          - mode
                          - series
                    required:
                      - emailsEnriched
                      - phonesEnriched
                      - contactsSaved
                      - contactsSearched
                required:
                  - range
                  - enrichment
              example:
                range: 30d
                enrichment:
                  emailsEnriched:
                    totalSince: 644
                    mode: week
                    series:
                      - date: W30
                        total: 5
                      - date: W31
                        total: 141
                      - date: W32
                        total: 63
                      - date: W33
                        total: 89
                      - date: W34
                        total: 263
                      - date: W35
                        total: 83
                  phonesEnriched:
                    totalSince: 801
                    mode: week
                    series:
                      - date: W30
                        total: 0
                      - date: W31
                        total: 150
                      - date: W32
                        total: 122
                      - date: W33
                        total: 84
                      - date: W34
                        total: 398
                      - date: W35
                        total: 47
                  contactsSaved:
                    totalSince: 73250
                    mode: week
                    series:
                      - date: W30
                        total: 5
                      - date: W31
                        total: 10916
                      - date: W32
                        total: 25118
                      - date: W33
                        total: 29195
                      - date: W34
                        total: 7381
                      - date: W35
                        total: 635
                  contactsSearched:
                    totalSince: 3579
                    mode: week
                    series:
                      - date: W30
                        total: 0
                      - date: W31
                        total: 0
                      - date: W32
                        total: 0
                      - date: W33
                        total: 0
                      - date: W34
                        total: 2977
                      - date: W35
                        total: 602
        '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.

````