logo
PlatformPayments
Platform

Payments

Deposit funds, view payment history, and track spending across all GPU rentals.

Overview

GPUniq supports multiple payment methods for depositing funds. Your balance is used for GPU rentals, volume storage, and LLM tokens.

Deposit Methods

Create a Deposit

from gpuniq import GPUniq
client = GPUniq(api_key="gpuniq_your_key")

deposit = client.payments.deposit(amount=1000, payment_system="yookassa")
print(f"Pay here: {deposit['confirmation_url']}")

Payment History

View all deposits:

history = client.payments.history()
for invoice in history["invoices"]:
    print(f"{invoice['amount']}{invoice['status']}")

Spending History

Track spending by task:

spending = client.payments.spending_history()
for record in spending["records"]:
    print(f"Task {record['task_id']}: {record['gpu_name']} — ${record['total_amount']}")

Billing

  • Real-time: Balance is deducted as you use GPU resources
  • Prepayment: Depending on pricing type, 1 hour upfront may be charged
  • Auto-stop: Instances stop if balance reaches zero

Ensure sufficient balance before starting long-running jobs. Monitor spending via the dashboard or API.