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

# Verify a project token, resolve live project authority, and return the regional WSS endpoint.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/bridge/route
openapi: 3.0.3
info:
  title: Polymorfa WhatsApp API
  version: 0.0.0
  description: >-
    Public Polymorfa REST API for sessions, messaging, media, webhooks,
    campaigns, templates, client tokens, widgets, and bridge routing.
  contact:
    name: Polymorfa API
    url: https://docs.polymorfa.com
servers:
  - url: https://api.polymorfa.com
security:
  - BearerAuth: []
paths:
  /v1/bridge/route:
    get:
      tags:
        - Bridge
      summary: >-
        Verify a project token, resolve live project authority, and return the
        regional WSS endpoint.
      operationId: getBridgeRoute
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  wsUrl:
                    type: string
                    format: uri
                  region:
                    type: string
                    enum:
                      - BR
                      - US
                      - IN
                      - Auto
                  kind:
                    type: string
                    enum:
                      - sandbox
                      - production
                  signal:
                    type: string
                    enum:
                      - customer
                      - bartender
                  tokenKind:
                    type: string
                    enum:
                      - project
                  expiresAt:
                    type: integer
                    minimum: 0
                required:
                  - wsUrl
                  - region
                  - kind
                  - signal
                  - tokenKind
                  - expiresAt
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error
                  - message
        '503':
          description: Service unavailable
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error
                  - message
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Polymorfa organization key (titan_ prefix), project token (titan_pt_
        prefix), or client token (titan_ct_ prefix), where the operation permits
        that audience.

````