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

# Get Profile

> Return the authenticated user's account, including their stable maker ID.

Return the authenticated user's account. Authenticate with a [Privy access token](/guides/authentication) from the Convallax dashboard (`Authorization: Bearer <jwt>`).

The user record is created automatically on the first authenticated request and assigned a stable `makerId` — the identifier your quotes are attributed to when you market-make with an [API key](/api-reference/user/create-api-key).


## OpenAPI

````yaml api-reference/openapi.json GET /v1/user/profile
openapi: 3.1.0
info:
  title: Convallax RFQ API
  version: 3.0.0
  description: >-
    REST surface for the Convallax options protocol — a non-custodial
    request-for-quote marketplace for European calls and puts on Polymarket YES
    outcomes, settled on Polygon.


    **Wire format**: JSON. Successful responses include `"success": true`;
    failures return `{ "success": false, "error": "..." }`.


    **Authentication**: Takers (traders) need no API key — authorization happens
    on-chain at `fill()`. Market makers authenticate with a per-MM API key sent
    as `X-API-Key` (or `?apiKey=`).


    **Streaming**: Quote-request and live-pricing streams use Server-Sent Events
    and the post-trade channel uses WebSocket; those are documented in the
    guides and are not part of this request/response reference.
servers:
  - url: https://api.convallax.com
    description: Production
security: []
tags:
  - name: Series
    description: Browse registered option series available for trading.
  - name: Trading
    description: Open quote requests, read live quotes, and commit to the best price.
  - name: Market Maker
    description: >-
      Submit quotes and confirmation signatures. Authenticated with a per-MM API
      key.
  - name: Settlement
    description: Compute TWAP resolution prices and sign settlement attestations.
  - name: Testnet
    description: Polygon Amoy testnet USDC faucet.
  - name: User
    description: >-
      Account profile and self-serve API keys. Authenticated with a Privy access
      token.
paths:
  /v1/user/profile:
    get:
      tags:
        - User
      summary: Get Profile
      description: >-
        Return the authenticated user's account. The user record is created
        automatically on first authenticated request and assigned a stable
        `makerId`.
      operationId: getProfile
      responses:
        '200':
          description: The authenticated user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileResponse'
        '401':
          $ref: '#/components/responses/Error'
        '503':
          $ref: '#/components/responses/Error'
      security:
        - PrivyJWT: []
components:
  schemas:
    ProfileResponse:
      type: object
      properties:
        success:
          type: boolean
          const: true
        user:
          $ref: '#/components/schemas/UserProfile'
    UserProfile:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: 3b1c9f0e-2a4d-4c6b-8e1f-9a0b1c2d3e4f
        privyDid:
          type: string
          description: Privy decentralized identifier for the user.
          example: did:privy:clz1example9999
        makerId:
          type: string
          description: Stable maker identifier your quotes are attributed to.
          example: mm_9f8e7d6c5b
        createdAt:
          type: string
          format: date-time
          example: '2026-06-16T18:00:00.000Z'
    ErrorResponse:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          const: false
        error:
          type: string
          description: Human-readable error message.
          example: Quote request not found or expired
  responses:
    Error:
      description: Error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    PrivyJWT:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Privy access token from the Convallax dashboard, sent as `Authorization:
        Bearer <jwt>`.

````