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

# Test a filter script

> Execute a filter script with test input to validate behavior



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml post /filters/test
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /filters/test:
    post:
      tags:
        - filters
      summary: Test a filter script
      description: Execute a filter script with test input to validate behavior
      requestBody:
        description: Filter test input
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api.FilterTestInput'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.FilterTestOutput'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
components:
  schemas:
    api.FilterTestInput:
      required:
        - input
        - script
      type: object
      properties:
        input:
          type: object
          additionalProperties: true
        script:
          type: string
      description: Filter test input model
    api.FilterTestOutput:
      type: object
      properties:
        error:
          type: string
        output:
          type: object
          additionalProperties: true
        success:
          type: boolean
      description: Filter test output model
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model

````