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

# Get available bidding strategies

> Get available bidding strategies for campaign creation.

Returns a list of supported bidding strategy types with descriptions.



## OpenAPI

````yaml https://dev-api.cattix.com/openapi.json get /api/v1/campaigns/bidding-strategies
openapi: 3.1.0
info:
  title: CATTIX API
  description: CATTIX Backend API
  version: 0.107.0
servers:
  - url: http://localhost:8000
    description: Local
  - url: https://dev-api.cattix.com
    description: Development
  - url: https://staging-api.cattix.com
    description: Staging
  - url: https://api.cattix.com
    description: Production
security: []
paths:
  /api/v1/campaigns/bidding-strategies:
    get:
      tags:
        - Campaigns
      summary: Get available bidding strategies
      description: |-
        Get available bidding strategies for campaign creation.

        Returns a list of supported bidding strategy types with descriptions.
      operationId: get_bidding_strategies_endpoint_api_v1_campaigns_bidding_strategies_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BiddingStrategiesResponseSchema'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    BiddingStrategiesResponseSchema:
      properties:
        bidding_strategies:
          items:
            $ref: '#/components/schemas/BiddingStrategyInfoSchema'
          type: array
          title: Bidding Strategies
      type: object
      required:
        - bidding_strategies
      title: BiddingStrategiesResponseSchema
      description: Response for available bidding strategies.
    BiddingStrategyInfoSchema:
      properties:
        type:
          $ref: '#/components/schemas/BiddingStrategyType'
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        requires_target:
          type: boolean
          title: Requires Target
          description: Whether this strategy requires a target value (CPA/ROAS)
          default: false
        target_field:
          anyOf:
            - type: string
            - type: 'null'
          title: Target Field
          description: Field name for target value if required
      type: object
      required:
        - type
        - name
        - description
      title: BiddingStrategyInfoSchema
      description: Information about a bidding strategy.
    BiddingStrategyType:
      type: string
      enum:
        - MAXIMIZE_CONVERSIONS
        - MAXIMIZE_CONVERSION_VALUE
        - MAXIMIZE_CLICKS
        - TARGET_CPA
        - TARGET_ROAS
        - TARGET_IMPRESSION_SHARE
        - MANUAL_CPC
      title: BiddingStrategyType
      description: Supported bidding strategy types.
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: api/v1/users/authorization/token

````