Bloqifi RESTful API documentation
  • The Next Generation Web³
  • Quick Start
  • Blog
  • Reference
    • API Reference
      • Authentication
      • Bloq
      • Payment
      • Transaction
      • Rates
    • Retrieval
      • Transaction ID
      • Web
      • Blob
      • Chunk
  • Stripe Metered Billing
    • API Reference
      • Subscribe
      • Check Usage
Powered by GitBook
On this page
  • Get a list
  • Transaction List

Was this helpful?

  1. Reference
  2. API Reference

Transaction

Making an authenticated call to the transaction endpoint

Get a list

All transactions made by user, with pagination.

Transaction List

GET https://api.bloqifi.com/v0/transaction/:BLOCKCHAIN/:PAGENUMBER

Get a paginated transaction list

Headers

Name
Type
Description

Content-Type

String

application/json

Authorization*

String

Bearer ${accessToken}

{
	"totalTransactions": 0,
	"data": [{
		"_id": "63188a678e1821065e7c09c2",
		"user_id": "6315ac163d8005005170cbf1",
		"name": "Added to Block",
		"type": "Credit",
		"category": "Storage",
		"amount": 0,
		"blockchain": "Bloqcoin",
		"txid": "d9cf6c956c414acfc37e6365964a16d4d9a627b2b75025549838d49278a56787",
		"createdAt": "2022-09-07T12:11:19.964Z",
		"updatedAt": "2022-09-07T12:11:19.964Z"
	}]
	"rowsPerPage": 6,
	"balance": 0
}
{
	message: 'Failed..'
}
PreviousPaymentNextRates

Last updated 2 years ago

Was this helpful?