> ## 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 Ad Classification Review

> List ads the classification worker flagged for review (admin-only).

Each item carries the current stored slugs (with human labels), the
``needs_review`` reasons, and a creative preview so an admin can correct the
industry/theme/language via ``POST /classification-review/correct``. The
``options`` block is the full label/slug vocabulary for the correction form.



## OpenAPI

````yaml /openapi.json get /api/v1/admin/integrations/meta-ad-library/classification-review
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/integrations/meta-ad-library/classification-review:
    get:
      tags:
        - Admin
      summary: List Ad Classification Review
      description: >-
        List ads the classification worker flagged for review (admin-only).


        Each item carries the current stored slugs (with human labels), the

        ``needs_review`` reasons, and a creative preview so an admin can correct
        the

        industry/theme/language via ``POST /classification-review/correct``. The

        ``options`` block is the full label/slug vocabulary for the correction
        form.
      operationId: >-
        list_ad_classification_review_api_v1_admin_integrations_meta_ad_library_classification_review_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            title: Offset
            default: 0
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdminAdClassificationReviewResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    AdminAdClassificationReviewResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/AdminAdClassificationReviewItem'
          type: array
          title: Items
        has_more:
          type: boolean
          title: Has More
          default: false
        options:
          $ref: '#/components/schemas/AdminAdClassificationReviewOptions'
      type: object
      required:
        - options
      title: AdminAdClassificationReviewResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AdminAdClassificationReviewItem:
      properties:
        ad_id:
          type: string
          format: uuid
          title: Ad Id
        advertiser_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Advertiser Name
        platform:
          type: string
          title: Platform
        ad_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Ad Url
        industry:
          anyOf:
            - type: string
            - type: 'null'
          title: Industry
        theme:
          anyOf:
            - type: string
            - type: 'null'
          title: Theme
        language:
          anyOf:
            - type: string
            - type: 'null'
          title: Language
        industry_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Industry Label
        theme_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Theme Label
        language_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Language Label
        video_duration_seconds:
          anyOf:
            - type: integer
            - type: 'null'
          title: Video Duration Seconds
        reasons:
          items:
            type: string
          type: array
          title: Reasons
        headline:
          anyOf:
            - type: string
            - type: 'null'
          title: Headline
        body_text:
          anyOf:
            - type: string
            - type: 'null'
          title: Body Text
        thumbnail_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Thumbnail Url
        classified_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Classified At
      type: object
      required:
        - ad_id
        - platform
      title: AdminAdClassificationReviewItem
    AdminAdClassificationReviewOptions:
      properties:
        industry:
          items:
            $ref: '#/components/schemas/AdminAdClassificationReviewOption'
          type: array
          title: Industry
        theme:
          items:
            $ref: '#/components/schemas/AdminAdClassificationReviewOption'
          type: array
          title: Theme
        language:
          items:
            $ref: '#/components/schemas/AdminAdClassificationReviewOption'
          type: array
          title: Language
      type: object
      title: AdminAdClassificationReviewOptions
    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
    AdminAdClassificationReviewOption:
      properties:
        slug:
          type: string
          title: Slug
        label:
          type: string
          title: Label
      type: object
      required:
        - slug
        - label
      title: AdminAdClassificationReviewOption
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````