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

# Options



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/brand-intelligence/{module}-native-create/options
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/{module}-native-create/options:
    get:
      tags:
        - SEO and Content Create
      summary: Options
      operationId: >-
        options_api_v1_brands__brand_id__brand_intelligence__module__native_create_options_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
        - name: module
          in: path
          required: true
          schema:
            type: string
            enum:
              - seo
              - content
            title: Module
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NativeCreateOptionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    NativeCreateOptionsResponse:
      properties:
        module:
          type: string
          enum:
            - seo
            - content
          title: Module
        available:
          type: boolean
          title: Available
        unavailableReason:
          anyOf:
            - type: string
              maxLength: 500
              minLength: 1
            - type: 'null'
          title: Unavailablereason
        deliverables:
          items:
            type: string
            enum:
              - seo_strategy
              - seo_refresh
              - content_strategy
              - content_asset
              - content_plan
          type: array
          maxItems: 3
          minItems: 1
          title: Deliverables
        assetFormats:
          items:
            type: string
            enum:
              - blog_post
              - guide
              - resource
              - case_study
              - whitepaper
              - webinar
              - podcast
              - video_script
          type: array
          maxItems: 8
          title: Assetformats
        defaultRegionCode:
          anyOf:
            - type: string
              pattern: ^[A-Z]{2}$
            - type: 'null'
          title: Defaultregioncode
        defaultLanguageCode:
          anyOf:
            - type: string
              maxLength: 40
              minLength: 2
              pattern: ^[A-Za-z]{2,3}(?:-[A-Za-z0-9]{2,8})*$
            - type: 'null'
          title: Defaultlanguagecode
        limits:
          anyOf:
            - $ref: '#/components/schemas/NativeCreateLimits'
            - type: 'null'
      additionalProperties: false
      type: object
      required:
        - module
        - available
        - deliverables
      title: NativeCreateOptionsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    NativeCreateLimits:
      properties:
        policyVersion:
          type: string
          maxLength: 120
          minLength: 1
          pattern: ^[A-Za-z0-9][A-Za-z0-9_.:-]*$
          title: Policyversion
        maxAssets:
          type: integer
          maximum: 20
          minimum: 1
          title: Maxassets
        maxEvidenceRefs:
          type: integer
          maximum: 80
          minimum: 1
          title: Maxevidencerefs
        maxPromptChars:
          type: integer
          maximum: 500000
          minimum: 1
          title: Maxpromptchars
        maxCompiledRequestChars:
          type: integer
          maximum: 1000000
          minimum: 1
          title: Maxcompiledrequestchars
        maxInputTokens:
          type: integer
          maximum: 250000
          minimum: 1
          title: Maxinputtokens
        maxOutputTokens:
          type: integer
          maximum: 100000
          minimum: 1
          title: Maxoutputtokens
        maxOutputChars:
          type: integer
          maximum: 500000
          minimum: 1
          title: Maxoutputchars
        maxProviderCalls:
          type: integer
          maximum: 50
          minimum: 1
          title: Maxprovidercalls
      additionalProperties: false
      type: object
      required:
        - policyVersion
        - maxAssets
        - maxEvidenceRefs
        - maxPromptChars
        - maxCompiledRequestChars
        - maxInputTokens
        - maxOutputTokens
        - maxOutputChars
        - maxProviderCalls
      title: NativeCreateLimits
      description: Qualified server policy; no default here grants an allowance.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````