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

# The hub's knowledge pages

> The curated knowledge pages the hub was synthesized into — the documents campaign generation actually reads. Every page carries its full Markdown `content`, so a large hub answers a large body; there is no pagination. Sorted by category then title. `origin` is `generated` for a page the build wrote, `edited` for a generated page you have since edited, and `user` for a page you authored: generated and edited pages are rewritten when their sources are re-crawled, pages you authored never are. Readable by you and your teammates. Hubs built before knowledge pages have none and answer 409 `KNOWLEDGE_HUB_PAGES_UNAVAILABLE`.

Errors:
- `404` `KNOWLEDGE_HUB_NOT_FOUND` — No hub with that id, it was deleted, or it belongs to another team.
- `409` `KNOWLEDGE_HUB_PAGES_UNAVAILABLE` — The hub predates knowledge pages and has none.
- `422` `VALIDATION_FAILED` — hubId is not a 24-character hex id.
- `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/{hubId}/pages
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/{hubId}/pages:
    get:
      tags:
        - Knowledge hubs
      summary: The hub's knowledge pages
      description: >-
        The curated knowledge pages the hub was synthesized into — the documents
        campaign generation actually reads. Every page carries its full Markdown
        `content`, so a large hub answers a large body; there is no pagination.
        Sorted by category then title. `origin` is `generated` for a page the
        build wrote, `edited` for a generated page you have since edited, and
        `user` for a page you authored: generated and edited pages are rewritten
        when their sources are re-crawled, pages you authored never are.
        Readable by you and your teammates. Hubs built before knowledge pages
        have none and answer 409 `KNOWLEDGE_HUB_PAGES_UNAVAILABLE`.


        Errors:

        - `404` `KNOWLEDGE_HUB_NOT_FOUND` — No hub with that id, it was deleted,
        or it belongs to another team.

        - `409` `KNOWLEDGE_HUB_PAGES_UNAVAILABLE` — The hub predates knowledge
        pages and has none.

        - `422` `VALIDATION_FAILED` — hubId is not a 24-character hex id.

        - `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: listKnowledgeHubPages
      parameters:
        - name: hubId
          in: path
          required: true
          description: >-
            24-character hex id of the knowledge hub (from GET
            /business/knowledge-hubs).
          schema:
            type: string
            description: >-
              24-character hex id of the knowledge hub (from GET
              /business/knowledge-hubs).
      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:
                  - pages
                properties:
                  pages:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - title
                        - content
                        - category
                        - origin
                        - createdAt
                        - updatedAt
                      properties:
                        id:
                          type:
                            - string
                            - 'null'
                        title:
                          type:
                            - string
                            - 'null'
                        content:
                          type:
                            - string
                            - 'null'
                          description: The page body in Markdown.
                        category:
                          type:
                            - string
                            - 'null'
                          enum:
                            - overview
                            - products
                            - pricing
                            - icp-use-cases
                            - differentiators
                            - competitors
                            - faq
                            - source-digest
                            - custom
                            - null
                        origin:
                          type:
                            - string
                            - 'null'
                          enum:
                            - generated
                            - edited
                            - user
                            - null
                          description: >-
                            generated = synthesized from the hub's sources,
                            edited = a generated page you have since edited,
                            user = a page you authored.
                        createdAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
                        updatedAt:
                          type:
                            - string
                            - 'null'
                          format: date-time
              example:
                pages:
                  - id: 68a1fc209c41d20014b3f301
                    title: Pricing
                    content: '## Plans\n\nStarter is 49 GBP per month per employer.'
                    category: pricing
                    origin: generated
                    createdAt: '2026-06-01T12:04:55.387Z'
                    updatedAt: '2026-08-09T04:12:03.126Z'
                  - id: 68a1fc209c41d20014b3f302
                    title: Objections
                    content: Price too high -> value framing.
                    category: custom
                    origin: user
                    createdAt: '2026-08-24T19:14:55.387Z'
                    updatedAt: '2026-08-24T19:14:55.387Z'
        '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.

````