Credit transaction history
GET
/api/v1/plans/transactions
const url = 'https://dashboard.justcrawl.io/api/v1/plans/transactions';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.justcrawl.io/api/v1/plans/transactions \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” page
integer
Page number (default 1)
pageSize
integer
Items per page (default 25, max 100)
Responses
Section titled “ Responses ”Paginated credit transactions
Media type application/json
object
items
Array<object>
object
total
integer
Example generated
{ "items": [ {} ], "total": 1}