> ## 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 hosted venue account activity

> Returns one owned USDC ledger page with signed exact 18-decimal amounts and native activity codes. This is observed account activity, not order-fill accounting, a spendable balance, or proof that a particular withdrawal completed. No wallet is created and no funds move. Sandbox entries are simulated funds. Provider account identities, descriptions and credentials are not returned.



## OpenAPI

````yaml /openapi/openapi.json get /users/me/venue-accounts/{venue}/activity
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:
  /users/me/venue-accounts/{venue}/activity:
    get:
      tags:
        - Users
      summary: Get hosted venue account activity
      description: >-
        Returns one owned USDC ledger page with signed exact 18-decimal amounts
        and native activity codes. This is observed account activity, not
        order-fill accounting, a spendable balance, or proof that a particular
        withdrawal completed. No wallet is created and no funds move. Sandbox
        entries are simulated funds. Provider account identities, descriptions
        and credentials are not returned.
      operationId: getHostedVenueActivity
      parameters:
        - name: venue
          in: path
          required: true
          schema:
            type: string
        - name: mode
          in: query
          required: false
          schema:
            type: string
            enum:
              - live
              - paper
        - name: page
          in: query
          required: false
          schema:
            minimum: 0
            maximum: 9999
            multipleOf: 1
            type: number
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - venue
                  - accountId
                  - environment
                  - asset
                  - decimals
                  - page
                  - nextPage
                  - observedAt
                  - items
                properties:
                  venue:
                    type: string
                    enum:
                      - betdex
                  accountId:
                    type: string
                  environment:
                    type: string
                    enum:
                      - sandbox
                      - production
                  asset:
                    type: string
                    enum:
                      - USDC
                  decimals:
                    type: number
                    enum:
                      - 18
                  page:
                    minimum: 0
                    maximum: 9999
                    type: integer
                  nextPage:
                    minimum: 0
                    maximum: 9999
                    type: integer
                    nullable: true
                  observedAt:
                    format: date-time
                    type: string
                  items:
                    maxItems: 100
                    type: array
                    items:
                      additionalProperties: false
                      type: object
                      required:
                        - id
                        - code
                        - amountRaw
                        - createdAt
                      properties:
                        id:
                          pattern: ^[a-f0-9]{64}$
                          type: string
                        code:
                          type: string
                          enum:
                            - Deposit
                            - Withdrawal
                            - TradeCreation
                            - TradeVoid
                            - TradeWin
                            - WalletToWallet
                            - Commission
                            - MarketPositionVoid
                            - MarketPositionPayout
                            - MarketPositionRefund
                            - ManualDebit
                            - ManualCredit
                            - SettlementResidual
                        amountRaw:
                          pattern: ^-?[0-9]+$
                          maxLength: 80
                          type: string
                        createdAt:
                          format: date-time
                          type: string
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    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
        '503':
          description: '503'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
      security:
        - appId: []
          bearerAuth: []
components:
  securitySchemes:
    appId:
      type: apiKey
      in: header
      name: x-app-id
      description: Your application ID. Required for all app-tier and user-tier routes.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT access token returned by POST /auth/verify. Required for user-tier
        routes.

````