Skip to main content
GET
/
billing
/
transactions
Get transactions
curl --request GET \
  --url https://api.nova-cloud.ai/billing/transactions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "type": "credit",
    "amount": 123,
    "balance_after": 123,
    "description": "<string>",
    "breakdown": {},
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Use a JWT access token or API key (prefixed with nv_)

Query Parameters

limit
integer
default:50

Number of transactions to return

Required range: x <= 100

Response

200 - application/json

Transaction history

id
string
type
enum<string>
Available options:
credit,
debit,
refund
amount
number
balance_after
number
description
string | null
breakdown
object
created_at
string<date-time>