Skip to main content
GET
/
billing
/
transactions
List billing transactions
curl --request GET \
  --url https://runcrate.ai/api/v1/billing/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "projectId": "<string>",
      "amount": 123,
      "description": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "cursor": "<string>",
    "hasMore": true,
    "total": 123,
    "requestId": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://runcrate.ai/docs/llms.txt

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

Authorizations

Authorization
string
header
required

Use a Runcrate API key with the rc_live_* prefix as the bearer token. Create one at https://www.runcrate.ai/dashboard/api-keys.

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
offset
integer
default:0
Required range: x >= 0
type
enum<string>
Available options:
credit,
usage,
refund,
adjustment

Response

Transactions.

data
object[]
required
meta
object

Pagination metadata on list responses.