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

# List taxonomy groups for strategy creation

> Returns the taxonomy groups available when creating a strategy, grouped by type.



## OpenAPI

````yaml /api-reference/openapi-v2.json get /strategies-taxonomy
openapi: 3.0.0
info:
  title: Noonum API v2
  version: 2.0.0
  contact:
    name: Noonum Support
    email: hello@noonum.com
  description: >
    Create and manage investment strategies, portfolios, and backtests. The API
    covers the full strategy lifecycle, including creation and editing, the
    archive and revive flow, version submission and run state, result companies,
    evidence, factsheets, exposures, and taxonomy.
servers:
  - url: https://api.noonum.ai/v2
security:
  - bearerAuth: []
tags:
  - name: UserStrategies
    description: Create, read, update, and manage your own investment strategies.
  - name: Helper
    description: >-
      Shared utilities for company lookup and search, objective tooling, and a
      health check.
  - name: Portfolios
    description: Create, read, update, and delete portfolios.
  - name: Backtest
    description: Run a standalone backtest on a portfolio of companies.
paths:
  /strategies-taxonomy:
    get:
      tags:
        - UserStrategies
      summary: List taxonomy groups for strategy creation
      description: >-
        Returns the taxonomy groups available when creating a strategy, grouped
        by type.
      operationId: app.api.v2.strategies.get_taxonomy
      responses:
        '200':
          description: The taxonomy groups, organized by type.
          content:
            application/json:
              schema:
                type: object
                properties:
                  megatrends:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          example: 83d88f60-f581-4176-bb5c-e0b463d1d442
                        name:
                          type: string
                          example: Transformative Technology
                        description:
                          type: string
                          nullable: true
                      required:
                        - id
                        - name
                  metathemes:
                    type: array
                    items:
                      allOf:
                        - type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                              example: 83d88f60-f581-4176-bb5c-e0b463d1d442
                            name:
                              type: string
                              example: Transformative Technology
                            description:
                              type: string
                              nullable: true
                          required:
                            - id
                            - name
                        - type: object
                          properties:
                            megatrendId:
                              type: string
                              format: uuid
                              nullable: true
                              description: Identifier of the parent megatrend group.
                              example: 5f0c41b8-5c0c-4b7e-8d19-6a2f9e3a3a74
                          required:
                            - megatrendId
                  gicsSectors:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          example: 83d88f60-f581-4176-bb5c-e0b463d1d442
                        name:
                          type: string
                          example: Transformative Technology
                        description:
                          type: string
                          nullable: true
                      required:
                        - id
                        - name
                required:
                  - megatrends
                  - metathemes
                  - gicsSectors
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT or API Key
      description: |
        Enter 'Bearer' followed by a space and then your JWT or API Key.
        Example: `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...`
        or `Bearer YOUR_API_KEY_HERE`

````