> ## 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.

# List Own Ads

> Every piece of the brand's own ad media — the edit flows' source picker.

Three legs: this surface's own creations, the user's uploads, and their
live Meta ad creatives. The Meta leg FAILS OPEN (a disconnected account or
a dark flag drops it rather than failing the list) and `meta_available`
says whether it was even attempted, so the client can distinguish "you
have no Meta ads" from "Meta isn't connected".



## OpenAPI

````yaml /openapi.json get /api/v1/brands/{brand_id}/creative/own-ads
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/creative/own-ads:
    get:
      tags:
        - Brand Creative
        - Brand Creative
      summary: List Own Ads
      description: >-
        Every piece of the brand's own ad media — the edit flows' source picker.


        Three legs: this surface's own creations, the user's uploads, and their

        live Meta ad creatives. The Meta leg FAILS OPEN (a disconnected account
        or

        a dark flag drops it rather than failing the list) and `meta_available`

        says whether it was even attempted, so the client can distinguish "you

        have no Meta ads" from "Meta isn't connected".
      operationId: list_own_ads_api_v1_brands__brand_id__creative_own_ads_get
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            title: Limit
            default: 30
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response List Own Ads Api V1 Brands  Brand Id  Creative Own
                  Ads Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````