Skip to main content
GET
/
v2
/
usage.availableCredits
GetAvailableCredits
curl --request GET \
  --url https://api.manus.ai/v2/usage.availableCredits \
  --header 'x-manus-api-key: <x-manus-api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "data": {
    "total_credits": 123,
    "free_credits": 123,
    "periodic_credits": 123,
    "addon_credits": 123,
    "pro_monthly_credits": 123,
    "event_credits": 123,
    "refresh_credits": 123,
    "max_refresh_credits": 123,
    "next_refresh_time": 123
  }
}
Questions or issues? Contact us at api-support@manus.ai.
Auth: API Key only — not available with OAuth tokens. The caller’s identity is derived entirely from the API key, so the request takes no parameters.
Scope: For an API key that belongs to a team sub-account, the response reflects the team’s shared credit pool. For a personal account, it reflects the personal balance.
total_credits is authoritative: Treat total_credits as the single source of truth for spendable balance. Other fields break down where the credits come from but do not always sum to total_credits — when the membership has lapsed, periodic_credits and addon_credits are excluded from the total even though addon_credits still reports its real (non-zero) balance.
Quota vs. balance: pro_monthly_credits and max_refresh_credits describe how much will be issued; periodic_credits and refresh_credits are how much currently remains.
Personal accounts only: max_refresh_credits, next_refresh_time, and refresh_interval are populated only for personal accounts. Team accounts have no daily/weekly refresh, so these return 0 / 0 / "". Time fields are Unix timestamps in seconds (UTC), not milliseconds.

Headers

x-manus-api-key
string
required

API key for authentication. This endpoint does not support OAuth2 tokens. See Authentication.

Response

Available credits retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

data
object

Credit balance and refresh information for the API key's caller. All credit fields are 32-bit integers in credit points. total_credits is the authoritative spendable balance — see the field descriptions for how it is composed.