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

# Get Forwarding Address

> The user's private forward-to address, minted on first request.

Session-or-token so the web/mobile connections screens and the MCP share
one route. Read scope suffices even though the first call writes: the
token is the user's own credential, not booking data.



## OpenAPI

````yaml /openapi.json get /v1/forwarding-address
openapi: 3.1.0
info:
  title: Stardrift API
  description: >-
    Read and edit the authenticated user's trips, itineraries, recorded
    bookings, and saved lists. Private records are owner-scoped. MCP tool names
    are documented separately from these HTTP operations.
  version: v1
servers:
  - url: https://stardrift.ai/api
security: []
paths:
  /v1/forwarding-address:
    get:
      tags:
        - mcp-server
      summary: Get Forwarding Address
      description: |-
        The user's private forward-to address, minted on first request.

        Session-or-token so the web/mobile connections screens and the MCP share
        one route. Read scope suffices even though the first call writes: the
        token is the user's own credential, not booking data.
      operationId: get_forwarding_address_v1_forwarding_address_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ForwardingAddressResponse'
components:
  schemas:
    ForwardingAddressResponse:
      properties:
        address:
          type: string
          title: Address
      type: object
      required:
        - address
      title: ForwardingAddressResponse

````