> ## Documentation Index
> Fetch the complete documentation index at: https://speaker-weave.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Submission



## OpenAPI

````yaml /openapi.json get /v1/submissions/{submission_id}
openapi: 3.1.0
info:
  title: SpeakerWeave API
  version: 1.0.1
  description: >-
    Organization-scoped REST API for conference program data. Authenticate every
    request with an API token from Settings → API tokens, sent as the
    x-access-token header.
servers:
  - url: https://speakerweave.com
security:
  - apiToken: []
paths:
  /v1/submissions/{submission_id}:
    get:
      tags:
        - v1-public
      summary: Get Submission
      operationId: get_submission_v1_submissions__submission_id__get
      parameters:
        - name: submission_id
          in: path
          required: true
          schema:
            type: string
            title: Submission Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Get Submission V1 Submissions  Submission Id  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
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:
    apiToken:
      type: apiKey
      in: header
      name: x-access-token

````