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

# Get Brand Bulk Load Run

> Per-URL state, counts, spend against the ceiling, and an ETA.



## OpenAPI

````yaml /openapi.json get /api/v1/admin/brand-bulk-load/{run_id}
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/brand-bulk-load/{run_id}:
    get:
      tags:
        - Admin Brand Bulk Load
        - Admin
      summary: Get Brand Bulk Load Run
      description: Per-URL state, counts, spend against the ceiling, and an ETA.
      operationId: get_brand_bulk_load_run_api_v1_admin_brand_bulk_load__run_id__get
      parameters:
        - name: run_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Run Id
        - name: item_limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            description: >-
              Maximum per-URL rows returned; aggregates always cover the full
              run.
            default: 100
            title: Item Limit
          description: Maximum per-URL rows returned; aggregates always cover the full run.
        - name: item_offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Item Offset
        - name: item_state
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Optionally return only per-URL rows in this item state.
            title: Item State
          description: Optionally return only per-URL rows in this item state.
        - name: all_items
          in: query
          required: false
          schema:
            type: boolean
            description: Explicitly return every matching per-URL row (ignores item_limit).
            default: false
            title: All Items
          description: Explicitly return every matching per-URL row (ignores item_limit).
        - name: include_observed_platform_cost
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              Also return PLATFORM-WIDE logged spend across the run's window.
              Advisory only — it includes every unrelated job in that window and
              is NOT per-run attribution.
            default: false
            title: Include Observed Platform Cost
          description: >-
            Also return PLATFORM-WIDE logged spend across the run's window.
            Advisory only — it includes every unrelated job in that window and
            is NOT per-run attribution.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '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

````