1. Guides
PixVerse Platform Docs
  • Overview
    • Introduce to PixVerse Platform
    • Quick Start
    • How does the API work?
    • How to get API key?
    • PixVerse-api-llm.txt
  • Models
    • Model Overview
    • Capability matrix
    • C1
    • V6
    • Pricing
  • Guides
    • Get video generation status
    • Check account balance
    • Subscribe API plans
    • Text-to-video
    • Image-to-video
    • Video Effects
    • Image template
    • Transition(First-last frame Feature)
    • Extend
    • Modify
    • Sound effects
    • Speech(Lip sync)
    • Lip sync TTS speaker list
    • Fusion(Reference to video)
    • Restyle
    • Multi-transition
    • Swap
    • Motion Control(Mimic)?
    • Webhook integration
  • API Reference
    • Rate limit
    • Video Generation
      • Text-to-Video generation
      • Image-to-Video generation
      • Template video generation
      • Transition(First-last frame) generation
      • Speech(Lipsync) generation
      • Get Speech(Lipsync) tts list
      • Fusion(reference to video) generation
      • Multi-transition video generation
      • Restyle video generation
      • Restyle effect list
      • Swap mask generation
      • Swap video generation
      • Sound effect generation
      • Extend generation
      • Get Video Generation Status
      • Motion Control (Mimic) generation
      • Modify generation
    • Image generation
      • Image template generation
      • Get Image generation
    • Upload Image
    • Get user credit balance
    • Upload Video&audio
  • Troubleshooting
    • FAQ
    • Common errors and Solutions
    • Error codes
  • Resources
    • Support
    • Change Logs
    • PixVerse MCP
    • Term of Service
    • Privacy policy
  1. Guides

Check account balance

Overview#

You can check your remaining account credits using your API-KEY.
Endpoint: GET https://app-api.pixverse.ai/openapi/v2/account/balance
API Reference : https://docs.platform.pixverse.ai/get-user-credit-balance-13778989e0

Prerequisites#

Before you begin, make sure you have:
A valid PixVerse API key
A different Ai-trace-id for each unique request

Step-by-Step Guide#

Step 1: Call get user credit balance endpoint#

Step 2: Check remaining Credits based on your purchased product#

credit_monthly :Your monthly membership remaining credits will reset every month.
credit_package :Remaining credits purchased in packages
{
    "ErrCode": 0,
    "ErrMsg": "success",
    "Resp": {
        "account_id": 0,
        "credit_monthly": 1069020,
        "credit_package": 3630
    }
}

Step 3: (Optional) Set up your own alert system using this interface#

Previous
Get video generation status
Next
Subscribe API plans