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

# Facts learned from the team's communications

> Anonymized facts the platform extracted from your team's sent emails, LinkedIn messages, calls and meeting transcripts — the same set that hubs with learning enabled fold into their pages on the daily learning run. Team-scoped (every teammate's active facts, across all hubs), sorted by category then newest first, with no pagination. `confidence` runs 0-1, `channels` names the communication types the fact was learned from, `sourceCount` how many communications back it, `asOf` the most recent of those, and `isOwn` whether the fact came from your own communications. Correct a fact with PATCH or retire it with DELETE; either takes effect in the hubs on the next daily run.

Errors:
- `429` `RATE_LIMITED` — More than 30 knowledge-hub/campaign requests in a minute (or 1000 in a day). Knowledge hubs share the campaigns bucket.

Requires one of the following token scopes: campaigns.



## OpenAPI

````yaml /openapi.json get /business/knowledge-hubs/learned-facts
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/knowledge-hubs/learned-facts:
    get:
      tags:
        - Knowledge hubs
      summary: Facts learned from the team's communications
      description: >-
        Anonymized facts the platform extracted from your team's sent emails,
        LinkedIn messages, calls and meeting transcripts — the same set that
        hubs with learning enabled fold into their pages on the daily learning
        run. Team-scoped (every teammate's active facts, across all hubs),
        sorted by category then newest first, with no pagination. `confidence`
        runs 0-1, `channels` names the communication types the fact was learned
        from, `sourceCount` how many communications back it, `asOf` the most
        recent of those, and `isOwn` whether the fact came from your own
        communications. Correct a fact with PATCH or retire it with DELETE;
        either takes effect in the hubs on the next daily run.


        Errors:

        - `429` `RATE_LIMITED` — More than 30 knowledge-hub/campaign requests in
        a minute (or 1000 in a day). Knowledge hubs share the campaigns bucket.


        Requires one of the following token scopes: campaigns.
      operationId: listLearnedFacts
      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
                required:
                  - facts
                properties:
                  facts:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - claim
                        - category
                        - confidence
                        - channels
                        - sourceCount
                        - asOf
                        - isOwn
                        - createdAt
                      properties:
                        id:
                          type: string
                        claim:
                          type:
                            - string
                            - 'null'
                          description: The anonymized fact text.
                        category:
                          type:
                            - string
                            - 'null'
                          enum:
                            - overview
                            - products
                            - pricing
                            - icp-use-cases
                            - differentiators
                            - competitors
                            - faq
                            - source-digest
                            - custom
                            - objection
                            - faq-insight
                            - null
                        confidence:
                          type:
                            - number
                            - 'null'
                          minimum: 0
                          maximum: 1
                        channels:
                          type: array
                          items:
                            type: string
                            enum:
                              - email
                              - linkedin
                              - transcript
                              - call
                          description: Communication types the fact was learned from.
                        sourceCount:
                          type: integer
                          description: How many communications back the fact.
                        asOf:
                          type:
                            - string
                            - 'null'
                          format: date-time
                          description: >-
                            Date of the most recent supporting communication;
                            falls back to the extraction time.
                        isOwn:
                          type: boolean
                          description: >-
                            Whether the fact came from your own communications
                            rather than a teammate's.
                        createdAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
              example:
                facts:
                  - id: 68a1fb0a9c41d20014b3f201
                    claim: >-
                      Prospects frequently ask whether a SOC 2 report is
                      available before a trial.
                    category: faq-insight
                    confidence: 0.9
                    channels:
                      - email
                      - call
                    sourceCount: 3
                    asOf: '2026-08-12T05:02:46.934Z'
                    isOwn: true
                    createdAt: '2026-08-13T05:02:46.934Z'
                  - id: 68a1fb0a9c41d20014b3f202
                    claim: >-
                      Buyers compare the product against legacy prospecting
                      databases on data freshness.
                    category: competitors
                    confidence: 1
                    channels:
                      - linkedin
                    sourceCount: 1
                    asOf: '2026-07-19T17:13:05.426Z'
                    isOwn: false
                    createdAt: '2026-07-24T05:02:46.934Z'
        '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.

````