Skip to main content
GET
/
api
/
v1
/
billing
/
history
Get credit transaction history
curl --request GET \
  --url https://dashboard.sequentum.com/api/v1/billing/history \
  --header 'Authorization: Bearer <token>'
{
  "transactions": [
    {
      "id": 123,
      "transactionType": "<string>",
      "amount": 123,
      "balance": 123,
      "created": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z",
      "message": "<string>"
    }
  ],
  "totalCount": 123,
  "pageIndex": 123,
  "recordsPerPage": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key authorization header. Example: "Authorization: ApiKey {your-api-key}"

Authorization
string
header
required

OAuth 2.0 Bearer token. Example: "Authorization: Bearer {access-token}"

Query Parameters

pageIndex
integer<int32>
default:1

Page number (1-based, default: 1)

recordsPerPage
integer<int32>
default:50

Records per page (default: 50, max: 100)

Response

Returns the credit history

Response model for credit history

transactions
object[] | null
totalCount
integer<int32>
pageIndex
integer<int32>
recordsPerPage
integer<int32>