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

# Get Appeal

> Retrieve strike appeal status and current appeal review outcome details.

Use this endpoint to fetch the current state of an appeal.


## OpenAPI

````yaml GET /api/user/strike/appeal
openapi: 3.1.0
info:
  title: WhiteCircle API Backend
  description: 'Authentication: Bearer API Key Required'
  license:
    name: ''
  version: '2025-12-01'
servers:
  - url: https://eu.whitecircle.com
  - url: https://us.whitecircle.com
security: []
tags:
  - name: Session
    description: Session-based content checking and moderation
  - name: User
    description: User risk assessment and scoring
  - name: Policy
    description: Policy management CRUD
  - name: Metric
    description: Metric management CRUD
  - name: Artifact
    description: Standalone artifact moderation
paths:
  /api/user/strike/appeal:
    get:
      tags:
        - User
      operationId: get_strike_appeal_v3
      parameters:
        - name: whitecircle-version
          in: header
          description: API Version
          required: true
          schema:
            type: string
          example: '2025-12-01'
        - name: strike_id
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
            format: uuid
          example: 4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4
        - name: appeal_id
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
            format: uuid
          example: 8f3a6f48-6f63-4ac0-b3ec-6beefca3e8c2
        - name: session_id
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
          example: session-456
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserStrikeAppealResponse'
              example:
                appeal_id: 8f3a6f48-6f63-4ac0-b3ec-6beefca3e8c2
                status: appeal.in_review
                current_points: 10
                current_level: warn
                updated_by: reviewer-42
        '400':
          description: Bad Request
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: cURL
          label: cURL (appeal_id)
          source: |-
            curl --request GET \
              --url 'https://eu.whitecircle.com/api/user/strike/appeal?appeal_id=8f3a6f48-6f63-4ac0-b3ec-6beefca3e8c2' \
              --header 'Authorization: Bearer <token>' \
              --header 'whitecircle-version: 2025-12-01'
        - lang: cURL
          label: cURL (strike_id)
          source: |-
            curl --request GET \
              --url 'https://eu.whitecircle.com/api/user/strike/appeal?strike_id=4aa6b3e7-66fb-4865-8d54-6f7f2faa49c4' \
              --header 'Authorization: Bearer <token>' \
              --header 'whitecircle-version: 2025-12-01'
components:
  schemas:
    UserStrikeAppealResponse:
      type: object
      required:
        - appeal_id
        - status
        - current_points
      properties:
        appeal_id:
          type: string
        current_level:
          type:
            - string
            - 'null'
        current_points:
          type: integer
          format: int32
        status:
          type: string
        updated_by:
          type:
            - string
            - 'null'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'API Key required. Format: Bearer wc-your-api-key'

````