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

# List gate submissions for your workspace



## OpenAPI

````yaml /openapi.json get /v1/gate/submissions
openapi: 3.1.0
info:
  title: DataVibe Public Gate API
  version: 1.0.0
  description: >-
    Customer API for deterministic pre-send governance of AI-generated outbound.
    Internal operator, admin, and archived product routes are intentionally
    excluded.
  contact:
    name: DataVibe support
    email: hi@datavibe.cc
    url: https://datavibe.cc/contact
servers:
  - url: https://api.datavibe.cc
    description: Production
security: []
tags:
  - name: Governance Check
  - name: Outbound Gate
paths:
  /v1/gate/submissions:
    get:
      tags:
        - Outbound Gate
      summary: List gate submissions for your workspace
      operationId: list_submissions_v1_gate_submissions_get
      parameters:
        - in: query
          name: status
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - in: query
          name: limit
          required: false
          schema:
            default: 50
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response List Submissions V1 Gate Submissions Get
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - APIKeyHeader: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    APIKeyHeader:
      in: header
      name: Authorization
      type: apiKey

````