GET
/
v3
/
billing
/
history
Get History
curl --request GET \
  --url http://127.0.0.1:3333/v3/billing/history \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "amount": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "metadata": "<unknown>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

workspaceId
string
required
limit
number
default:5
cursor
string

Response

Default Response

data
object[]
required
nextCursor
string | null