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

# List Monitored Topics

> Returns all Monitored Topics owned by the given user. A Monitored Topic is a named matching criterion used to decide whether a post qualifies for a Topic campaign. Each response item also reports which Topic campaign, if any, the topic is currently bound to as `campaign: { id, name }`.



## OpenAPI

````yaml https://api.goextrovert.com/client/v2/docs-json get /client/v2/monitored-topics
openapi: 3.0.0
info:
  title: Extrovert Client API
  description: >-
    Public API for Extrovert platform integration. Use your API key for
    authentication.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.goextrovert.com/
    description: API Server
security: []
tags: []
paths:
  /client/v2/monitored-topics:
    get:
      tags:
        - Monitored Topics
      summary: List Monitored Topics
      description: >-
        Returns all Monitored Topics owned by the given user. A Monitored Topic
        is a named matching criterion used to decide whether a post qualifies
        for a Topic campaign. Each response item also reports which Topic
        campaign, if any, the topic is currently bound to as `campaign: { id,
        name }`.
      operationId: RelevantPostTagClientApiController_getOwnerList
      parameters:
        - description: ID of the user whose Monitored Topics should be returned.
          examples:
            example1:
              value: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
          required: true
          name: id
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOwnerListResponseDto'
        '401':
          description: Invalid or missing API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientApiErrorResponseDto'
      security:
        - api-key: []
components:
  schemas:
    GetOwnerListResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          enum:
            - success
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
                format: uuid
                description: Monitored Topic ID.
                example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
              updatedAt:
                type: string
                description: Timestamp of the most recent update to the Monitored Topic.
                example: '2025-06-30T14:02:07.456Z'
              createdAt:
                type: string
                description: Timestamp when the Monitored Topic was created.
                example: '2025-06-30T14:02:07.456Z'
              name:
                type: string
                description: Short topic name (e.g. 'AI agents', 'B2B SaaS pricing').
              description:
                type: string
                description: >-
                  Describe what makes a post qualify for this topic — what it
                  should be about, and what should be excluded. Used by the AI
                  matcher when scanning posts.
              campaign:
                description: >-
                  Topic campaign this Monitored Topic is bound to, if any - only
                  `id` and `name` are exposed. Omitted in JSON when the topic is
                  not bound to a campaign.
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                    description: Entity ID
                    example: 8d256aa6-9b12-49a7-93ee-bf41634b5b60
                  name:
                    type: string
                    description: Entity name
                required:
                  - id
                  - name
            required:
              - id
              - updatedAt
              - createdAt
              - name
              - description
          description: Monitored Topics owned by the requested user.
        message:
          type: string
          description: Success message
          example: Operation completed successfully
      required:
        - status
        - data
        - message
    ClientApiErrorResponseDto:
      type: object
      properties:
        status:
          type: string
          description: Response status
          example: error
          enum:
            - error
        data:
          type: object
          description: Response data
          example: null
        message:
          type: string
          description: Error message
          example: An error occurred while processing the request
      required:
        - status
        - data
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key for authentication

````