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

# Browse all available intent topics

> Returns the full topic catalog (20K+ topics). Filter by type, industry, category, or text search. Cached 24h.



## OpenAPI

````yaml https://api.aws53.cloud/openapi-intent.json get /v1/intent/topics
openapi: 3.1.0
info:
  title: Orbit API
  version: 1.0.0
  description: >-
    Orbit Audience Intent API: topic discovery, site analysis, curated ICP
    filters, saved audiences, materialization runs, stats, and CSV export.
    Discovery endpoints are public; audience management accepts either Bearer
    JWT or X-API-Key auth.
servers:
  - url: https://api.aws53.cloud
    description: Production
security: []
tags:
  - name: Topic Discovery
    description: Browse, search, and analyze available intent topics
  - name: Site Analysis
    description: Analyze a website URL to find matching intent topics
  - name: Site Topics
    description: Recent organization site-topic analyses
  - name: Audience Builder
    description: >-
      Curated filters, preview, saved audiences, runs, stats, CSV export, and
      saved topic lists
paths:
  /v1/intent/topics:
    get:
      tags:
        - Topic Discovery
      summary: Browse all available intent topics
      description: >-
        Returns the full topic catalog (20K+ topics). Filter by type, industry,
        category, or text search. Cached 24h.
      parameters:
        - schema:
            type: string
            enum:
              - b2b
              - b2c
              - both
          required: false
          name: type
          in: query
        - schema:
            type: string
            maxLength: 100
          required: false
          name: industry
          in: query
        - schema:
            type: string
            maxLength: 100
          required: false
          name: category
          in: query
        - schema:
            type: string
            maxLength: 100
          required: false
          name: q
          in: query
      responses:
        '200':
          description: Topic catalog
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TopicInventoryResponse'
components:
  schemas:
    TopicInventoryResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              topicId:
                type: number
              topicName:
                type: string
              type:
                type: string
              industry:
                type: string
              category:
                type: string
            required:
              - topicId
              - topicName
              - type
              - industry
              - category
        meta:
          type: object
          properties:
            total:
              type: number
            page:
              type: number
            pageSize:
              type: number
            hasMore:
              type: boolean
          required:
            - total
            - page
            - pageSize
            - hasMore
      required:
        - data
        - meta

````