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

# Run Anon Free Audit

> Run a free audit anonymously.

No auth required. The resulting Brand + BrandAudit are attached to
the anon sentinel user and tagged with ``session_token`` so the
visitor can claim them on signup.



## OpenAPI

````yaml /openapi.json post /api/v1/free-audits/anon
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/free-audits/anon:
    post:
      tags:
        - Free Audits
        - Free Audits
      summary: Run Anon Free Audit
      description: |-
        Run a free audit anonymously.

        No auth required. The resulting Brand + BrandAudit are attached to
        the anon sentinel user and tagged with ``session_token`` so the
        visitor can claim them on signup.
      operationId: run_anon_free_audit_api_v1_free_audits_anon_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AnonFreeAuditRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AnonFreeAuditCreateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AnonFreeAuditRequest:
      properties:
        url:
          type: string
          maxLength: 500
          minLength: 5
          title: Url
        audit_type:
          type: string
          title: Audit Type
        session_token:
          type: string
          maxLength: 64
          minLength: 8
          title: Session Token
        social_links:
          anyOf:
            - additionalProperties:
                type: string
              type: object
            - type: 'null'
          title: Social Links
        platform:
          anyOf:
            - type: string
            - type: 'null'
          title: Platform
      type: object
      required:
        - url
        - audit_type
        - session_token
      title: AnonFreeAuditRequest
    AnonFreeAuditCreateResponse:
      properties:
        audit_id:
          type: string
          format: uuid
          title: Audit Id
        brand_id:
          type: string
          format: uuid
          title: Brand Id
      type: object
      required:
        - audit_id
        - brand_id
      title: AnonFreeAuditCreateResponse
    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

````