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

# Read an auditable V9 points account



## OpenAPI

````yaml /api-reference/retardmarket_openapi.yml get /points/{wallet}
openapi: 3.0.3
info:
  title: retard.market V9 API
  version: 0.9.0
  description: >
    Projection-backed Robinhood Chain market data, conservative quotes, wallet
    portfolios,

    points, media uploads, and realtime invalidation for retard.market.


    Every endpoint requires a caller-specific VibeChain API key in the

    `API-KEY` header. Create one at

    https://docs.vibechain.com/api-reference/retardmarket-intro.
servers:
  - url: https://build.vibechain.com/api/retard/v9
security:
  - ApiKeyAuth: []
tags:
  - name: Runtime
  - name: Markets
  - name: Portfolio
  - name: Points
  - name: Media
  - name: Realtime
paths:
  /points/{wallet}:
    get:
      tags:
        - Points
      summary: Read an auditable V9 points account
      operationId: getRetardV9Points
      parameters:
        - $ref: '#/components/parameters/WalletAddress'
      responses:
        '200':
          description: Point totals and receipts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PointsAccount'
        '400':
          $ref: '#/components/responses/InvalidInput'
        '429':
          $ref: '#/components/responses/ApiKeyOrRateLimit'
        '503':
          $ref: '#/components/responses/ProductUnavailable'
components:
  parameters:
    WalletAddress:
      in: path
      name: wallet
      required: true
      description: EVM wallet address
      schema:
        $ref: '#/components/schemas/Address'
  schemas:
    PointsAccount:
      type: object
      required:
        - wallet
        - totalPoints
        - referralPoints
        - xPoints
        - xVerified
        - xUsername
        - receipts
      properties:
        wallet:
          $ref: '#/components/schemas/Address'
        totalPoints:
          type: integer
        referralPoints:
          type: integer
        xPoints:
          type: integer
        xVerified:
          type: boolean
        xUsername:
          type: string
        receipts:
          type: array
          items:
            $ref: '#/components/schemas/PointReceipt'
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
      example: '0x0000000000000000000000000000000000000001'
    PointReceipt:
      type: object
      required:
        - source
        - status
        - reason
        - points
        - transactionHash
        - logIndex
        - blockNumber
        - trader
        - spendWei
        - ethUsd
        - xUsername
        - occurredAt
      properties:
        source:
          type: string
          enum:
            - REFERRED_BUY
            - X_VERIFICATION
        status:
          type: string
          enum:
            - AWARDED
            - REJECTED
        reason:
          type: string
        points:
          type: integer
        transactionHash:
          allOf:
            - $ref: '#/components/schemas/TransactionHash'
          nullable: true
        logIndex:
          type: integer
          nullable: true
        blockNumber:
          type: integer
          nullable: true
        trader:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
        spendWei:
          allOf:
            - $ref: '#/components/schemas/Wei'
          nullable: true
        ethUsd:
          type: number
          nullable: true
        xUsername:
          type: string
          nullable: true
        occurredAt:
          $ref: '#/components/schemas/DateTime'
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    ApiKeyError:
      allOf:
        - $ref: '#/components/schemas/Error'
        - type: object
          required:
            - docs
          properties:
            error:
              type: string
              enum:
                - API_KEY_REQUIRED_OR_RATE_LIMITED
            docs:
              type: string
              format: uri
    TransactionHash:
      type: string
      pattern: ^0x[0-9a-fA-F]{64}$
    Wei:
      type: string
      pattern: ^[0-9]+$
      description: Unsigned integer amount in Wei
      example: '50000000000000000'
    DateTime:
      type: string
      format: date-time
  responses:
    InvalidInput:
      description: Invalid request input
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ApiKeyOrRateLimit:
      description: API key missing/invalid or the caller allowance is exhausted
      headers:
        Retry-After:
          schema:
            type: integer
          description: Seconds until the current rate window resets
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiKeyError'
    ProductUnavailable:
      description: V9 or the requested subsystem is disabled or unavailable
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: Caller-specific VibeChain API key created through `/apikey/create`.

````