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

# Public team sign-up endpoint



## OpenAPI

````yaml https://api.wirespeed.co/v1/openapi.json post /v1/team/signup
openapi: 3.0.0
info:
  title: Wirespeed API
  description: The public Wirespeed API. v1 is the first stable contract.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.wirespeed.co
security: []
tags: []
paths:
  /v1/team/signup:
    post:
      tags:
        - Team
      summary: Public team sign-up endpoint
      operationId: TeamController_publicSignUp
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PublicSignUpDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicSignUpResponse'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpError'
      security:
        - bearer: []
components:
  schemas:
    PublicSignUpDto:
      type: object
      properties:
        firstName:
          type: string
          description: First name of the user (1-512 characters)
        lastName:
          type: string
          description: Last name of the user (1-512 characters)
        email:
          type: string
          description: Business email address (personal domains blocked)
        company:
          type: string
          description: Company name (1-512 characters, used as team name)
        title:
          type: string
          description: Job title (1-512 characters)
        signupInquiryType:
          type: string
          enum:
            - My Business
            - MSP
          description: Type of sign-up inquiry
        turnstile:
          type: string
          description: Turnstile verification token for bot protection
      required:
        - firstName
        - lastName
        - email
        - company
        - title
        - signupInquiryType
        - turnstile
    PublicSignUpResponse:
      type: object
      properties:
        teamId:
          type: string
          description: Unique identifier for the created team
        message:
          type: string
          description: Confirmation message
      required:
        - teamId
        - message
    HttpError:
      type: object
      properties:
        message:
          type: string
        statusCode:
          type: number
      required:
        - message
        - statusCode
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````