> ## 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

> Returns the current user's hosted venue status and balance. Does not create a wallet. Provider identities and credentials are never returned.



## OpenAPI

````yaml /openapi/openapi.json get /users/me/venue-accounts/{venue}
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}:
    get:
      tags:
        - Users
      summary: Get hosted venue account
      description: >-
        Returns the current user's hosted venue status and balance. Does not
        create a wallet. Provider identities and credentials are never returned.
      operationId: getHostedVenueAccount
      parameters:
        - name: venue
          in: path
          required: true
          schema:
            type: string
        - name: mode
          in: query
          required: false
          schema:
            type: string
            enum:
              - live
              - paper
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                additionalProperties: false
                type: object
                required:
                  - venue
                  - accountModel
                  - accountId
                  - environment
                  - status
                  - provisioningEnabled
                  - fundingNetwork
                  - balanceStatus
                  - balance
                properties:
                  venue:
                    type: string
                    enum:
                      - betdex
                  accountModel:
                    type: string
                    enum:
                      - platform-hosted
                  accountId:
                    type: string
                    nullable: true
                  environment:
                    nullable: true
                    type: string
                    enum:
                      - sandbox
                      - production
                  status:
                    type: string
                    enum:
                      - not_created
                      - provisioning
                      - active
                      - suspended
                      - unavailable
                      - disabled
                  provisioningEnabled:
                    type: boolean
                  fundingNetwork:
                    type: string
                    enum:
                      - solana
                  balanceStatus:
                    type: string
                    enum:
                      - available
                      - unavailable
                      - not_applicable
                  balance:
                    additionalProperties: false
                    type: object
                    required:
                      - asset
                      - decimals
                      - totalRaw
                      - availableRaw
                      - unmatchedExposureRaw
                      - updatedAt
                    properties:
                      asset:
                        type: string
                        enum:
                          - USDC
                      decimals:
                        type: number
                        enum:
                          - 6
                      totalRaw:
                        pattern: ^-?[0-9]+$
                        maxLength: 80
                        type: string
                      availableRaw:
                        pattern: ^[0-9]+$
                        maxLength: 80
                        type: string
                      unmatchedExposureRaw:
                        pattern: ^[0-9]+$
                        maxLength: 80
                        type: string
                      updatedAt:
                        format: date-time
                        type: string
                    nullable: true
        '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
      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.

````