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

# Query remaining balance

> Query the remaining points balance available for later operations.



## OpenAPI

````yaml /openapi.old.json post /api/queryPointsInfo
openapi: 3.0.3
info:
  title: Neural4D Management API
  description: Management endpoints for Neural4D, including request and response examples.
  version: 1.5.4
servers:
  - url: https://alb.neural4d.com:3000
    description: Production server
security:
  - bearerAuth: []
tags:
  - name: text-to-3d
    description: Create 3D models from text prompts.
    x-group: Text to 3D
  - name: image-to-3d
    description: Create 3D models from uploaded images.
    x-group: Image to 3D
  - name: model-management
    description: Retrieve finished models, track jobs, and convert model formats.
    x-group: Model management
  - name: media-generation
    description: Generate pictures and videos and query their results.
    x-group: Picture and video generation
  - name: account-and-validation
    description: Check portrait inputs and query remaining points.
    x-group: Account and validation
paths:
  /api/queryPointsInfo:
    post:
      tags:
        - account-and-validation
      summary: Query remaining balance
      description: Query the remaining points balance available for later operations.
      operationId: queryPointsInfo
      responses:
        '200':
          description: Remaining points information
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryPointsInfoResponse'
              examples:
                success:
                  value:
                    statusType: 0
                    data:
                      total_points: 54335
                      monthly_bonus_points: 0
                      permanent_points: 54335
                      year_points: 0
                      expiration_day: null
                    message: Get the points info successfully
components:
  schemas:
    QueryPointsInfoResponse:
      type: object
      required:
        - statusType
        - data
        - message
      properties:
        statusType:
          type: integer
          enum:
            - -1
            - 0
          description: >-
            Query status. `0` means the result is valid and `-1` means the
            result is invalid.
        data:
          $ref: '#/components/schemas/BalanceInfo'
          description: Current point balances grouped by point type.
        message:
          type: string
          description: Human-readable point balance query result.
    BalanceInfo:
      type: object
      required:
        - total_points
        - monthly_bonus_points
        - permanent_points
        - year_points
        - expiration_day
      properties:
        total_points:
          type: integer
          description: Total points currently available to the account.
        monthly_bonus_points:
          type: integer
          description: Available points granted by the monthly plan.
        permanent_points:
          type: integer
          description: Available permanent points without a monthly expiration.
        year_points:
          type: integer
          description: Available points granted by the annual plan.
        expiration_day:
          type: string
          nullable: true
          description: Expiration day for time-limited points when present.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Use the bearer token provided through the Neural4D website.
      x-default: YOUR_TOKEN

````