curl --request GET \
--url https://api.example.com/credits/price-preview/ \
--header 'Authorization: Bearer <token>'{
"subtotal": 123,
"tax": 123,
"total": 123
}curl --request GET \
--url https://api.example.com/credits/price-preview/ \
--header 'Authorization: Bearer <token>'{
"subtotal": 123,
"tax": 123,
"total": 123
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.