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

# Get a paper trading portfolio



## OpenAPI

````yaml /openapi/openapi.json get /apps/{appId}/paper-trading/accounts/{accountId}/portfolio
openapi: 3.0.2
info:
  title: AGG API
  version: 1.0.0
  description: >-
    Prediction market aggregator REST API — authentication, users, venue events,
    venue markets, orderbooks, charts, and execution workflows.
servers:
  - url: https://api.agg.market
    description: Production
  - url: https://api.staging.agg.market
    description: Staging
security: []
paths:
  /apps/{appId}/paper-trading/accounts/{accountId}/portfolio:
    get:
      tags:
        - Execution
      summary: Get a paper trading portfolio
      operationId: getPaperTradingPortfolio
      parameters:
        - name: appId
          in: path
          required: true
          schema:
            type: string
        - name: accountId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - account
                  - cashBalanceRaw
                  - cashBalance
                  - marketValueRaw
                  - marketValue
                  - equityRaw
                  - equity
                  - realizedPnlRaw
                  - realizedPnl
                  - unrealizedPnlRaw
                  - unrealizedPnl
                  - liquidationValueRaw
                  - liquidationValue
                  - liquidationEquityRaw
                  - liquidationEquity
                  - liquidationPnlRaw
                  - liquidationPnl
                  - positions
                properties:
                  account:
                    type: object
                    required:
                      - id
                      - appId
                      - name
                      - externalId
                      - currency
                      - startingBalanceRaw
                      - startingBalance
                      - cashBalanceRaw
                      - cashBalance
                      - realizedPnlRaw
                      - realizedPnl
                      - kycStatus
                      - kycVerified
                      - status
                      - createdAt
                      - updatedAt
                    properties:
                      id:
                        type: string
                      appId:
                        type: string
                      name:
                        type: string
                        nullable: true
                      externalId:
                        type: string
                        nullable: true
                      currency:
                        type: string
                      startingBalanceRaw:
                        type: string
                      startingBalance:
                        type: number
                      cashBalanceRaw:
                        type: string
                      cashBalance:
                        type: number
                      realizedPnlRaw:
                        type: string
                      realizedPnl:
                        type: number
                      kycStatus:
                        type: string
                        enum:
                          - verified
                      kycVerified:
                        type: boolean
                        enum:
                          - true
                      status:
                        type: string
                        enum:
                          - active
                          - archived
                      createdAt:
                        type: string
                      updatedAt:
                        type: string
                  cashBalanceRaw:
                    type: string
                  cashBalance:
                    type: number
                  marketValueRaw:
                    type: string
                  marketValue:
                    type: number
                  equityRaw:
                    type: string
                  equity:
                    type: number
                  realizedPnlRaw:
                    type: string
                  realizedPnl:
                    type: number
                  unrealizedPnlRaw:
                    type: string
                  unrealizedPnl:
                    type: number
                  liquidationValueRaw:
                    type: string
                  liquidationValue:
                    type: number
                  liquidationEquityRaw:
                    type: string
                  liquidationEquity:
                    type: number
                  liquidationPnlRaw:
                    type: string
                  liquidationPnl:
                    type: number
                  positions:
                    type: array
                    items:
                      type: object
                      required:
                        - id
                        - accountId
                        - venue
                        - venueMarketId
                        - venueMarketOutcomeId
                        - marketQuestion
                        - outcomeLabel
                        - winner
                        - size
                        - avgEntryPrice
                        - markPrice
                        - markSource
                        - markTimestamp
                        - bestBidPrice
                        - bestAskPrice
                        - midpoint
                        - spread
                        - marketValueRaw
                        - marketValue
                        - unrealizedPnlRaw
                        - unrealizedPnl
                        - liquidationPrice
                        - liquidationValueRaw
                        - liquidationValue
                        - liquidationPnlRaw
                        - liquidationPnl
                        - liquidityShares
                        - liquidityStatus
                        - realizedPnlRaw
                        - realizedPnl
                        - createdAt
                        - updatedAt
                      properties:
                        id:
                          type: string
                        accountId:
                          type: string
                        venue:
                          type: string
                        venueMarketId:
                          type: string
                        venueMarketOutcomeId:
                          type: string
                        marketQuestion:
                          type: string
                        outcomeLabel:
                          type: string
                        winner:
                          type: boolean
                          nullable: true
                        size:
                          type: number
                        avgEntryPrice:
                          type: number
                        markPrice:
                          type: number
                        markSource:
                          type: string
                          enum:
                            - orderbook_midpoint
                            - orderbook_best_bid
                            - catalog_price
                        markTimestamp:
                          type: number
                          nullable: true
                        bestBidPrice:
                          type: number
                          nullable: true
                        bestAskPrice:
                          type: number
                          nullable: true
                        midpoint:
                          type: number
                          nullable: true
                        spread:
                          type: number
                          nullable: true
                        marketValueRaw:
                          type: string
                        marketValue:
                          type: number
                        unrealizedPnlRaw:
                          type: string
                        unrealizedPnl:
                          type: number
                        liquidationPrice:
                          type: number
                          nullable: true
                        liquidationValueRaw:
                          type: string
                        liquidationValue:
                          type: number
                        liquidationPnlRaw:
                          type: string
                        liquidationPnl:
                          type: number
                        liquidityShares:
                          type: number
                        liquidityStatus:
                          type: string
                          enum:
                            - full
                            - partial
                            - none
                        realizedPnlRaw:
                          type: string
                        realizedPnl:
                          type: number
                        createdAt:
                          type: string
                        updatedAt:
                          type: string
        '401':
          description: '401'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '403':
          description: '403'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '404':
          description: '404'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
      security:
        - appApiKey: []
components:
  securitySchemes:
    appApiKey:
      type: apiKey
      in: header
      name: x-app-api-key
      description: App-scoped API key for programmatic app management.

````