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

# Create an ad campaign

> Creates an asynchronous campaign of static ad creatives from a product and prompt.



## OpenAPI

````yaml /api/openapi.yaml post /campaigns
openapi: 3.1.0
info:
  title: LocalAds API
  version: 1.0.0
  description: Public API for LocalAds customer integrations.
servers:
  - url: https://makelocalads.com/api/v1
security:
  - apiKey: []
paths:
  /campaigns:
    post:
      summary: Create an ad campaign
      description: >-
        Creates an asynchronous campaign of static ad creatives from a product
        and prompt.
      operationId: createCampaign
      parameters:
        - $ref: '#/components/parameters/IdempotencyKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CampaignCreate'
            example:
              product_id: a1516a75-9be5-461a-93af-c1896a0a3127
              prompt: >-
                Create a premium campaign focused on the product's craftsmanship
                and gift appeal.
              language: English
              creative_count: 10
      responses:
        '202':
          description: Campaign accepted.
          headers:
            Location:
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Campaign'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '422':
          $ref: '#/components/responses/Unprocessable'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    IdempotencyKey:
      name: Idempotency-Key
      in: header
      required: false
      description: >-
        Optional caller-generated value that prevents duplicate generation when
        retrying the same request.
      schema:
        type: string
        minLength: 1
        maxLength: 255
  schemas:
    CampaignCreate:
      type: object
      additionalProperties: false
      required:
        - product_id
        - prompt
      properties:
        product_id:
          type: string
          format: uuid
        prompt:
          type: string
          minLength: 1
          maxLength: 2000
          description: >-
            Campaign direction describing the audience, angle, offer, or visual
            tone.
        language:
          type: string
          default: English
          enum:
            - English
            - Hindi
            - Hinglish
            - Tamil
            - Telugu
            - Marathi
            - Bengali
            - Kannada
            - Malayalam
            - Gujarati
            - Punjabi
            - Odia
            - Assamese
            - Urdu
            - Spanish
            - French
            - German
            - Portuguese
            - Italian
            - Dutch
            - Russian
            - Arabic
            - Mandarin Chinese
            - Japanese
            - Korean
            - Vietnamese
            - Thai
            - Indonesian
            - Filipino
            - Turkish
            - Polish
            - Ukrainian
            - Greek
            - Hebrew
            - Swedish
            - Norwegian
            - Danish
            - Finnish
            - Romanian
            - Czech
            - Hungarian
            - Swahili
        creative_count:
          type: integer
          enum:
            - 3
            - 5
            - 10
            - 15
            - 20
            - 25
            - 30
          default: 10
    Campaign:
      type: object
      additionalProperties: false
      required:
        - id
        - brand_id
        - product_id
        - name
        - status
        - requested_creative_count
        - completed_creative_count
        - failed_creative_count
        - creatives
        - created_at
        - updated_at
      properties:
        id:
          type: string
          format: uuid
        brand_id:
          type: string
          format: uuid
        product_id:
          type: string
          format: uuid
        name:
          type: string
        status:
          type: string
          enum:
            - queued
            - in_progress
            - completed
            - failed
            - canceled
        requested_creative_count:
          type: integer
        completed_creative_count:
          type: integer
        failed_creative_count:
          type: integer
        creatives:
          type: array
          items:
            $ref: '#/components/schemas/CampaignCreative'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    CampaignCreative:
      type: object
      additionalProperties: false
      required:
        - id
        - status
        - image_url
        - width
        - height
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - queued
            - in_progress
            - completed
            - failed
            - canceled
        image_url:
          type:
            - string
            - 'null'
          format: uri
        width:
          type:
            - integer
            - 'null'
        height:
          type:
            - integer
            - 'null'
    Problem:
      type: object
      required:
        - type
        - title
        - status
        - detail
        - code
        - request_id
      properties:
        type:
          type: string
          format: uri
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
        code:
          type: string
        request_id:
          type: string
  responses:
    BadRequest:
      description: Invalid request.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Forbidden:
      description: The API key lacks the required permission.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    NotFound:
      description: Resource not found.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Conflict:
      description: >-
        Idempotency key conflict, an identical request still in progress, or a
        brand already exists for the requested website.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unprocessable:
      description: A product rule, plan limit, or credit limit blocked the request.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    RateLimited:
      description: API key rate limit exceeded.
      headers:
        Retry-After:
          schema:
            type: integer
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: lads_...

````