Listing invoices
GET
/api/public/v1/invoices
This endpoint returns a list of invoices with pagination.
Headers
Content-Type
application/vnd.api+json
Authorization
Bearer <api_key>
URL Parameters
order
string
Order in which the list of transactions should be returned. Can be created_at
.
order_type
string
Order type. Can be either asc
or desc
.
page
number
Page for which you want to return transactions.
per_page
number
Number of transactions per page to return.
reference
number
Invoice reference
.
Response Body
data.id
string
Invoice ID.
data.type
string
Entity type returned. Always invoices
.
data.attributes
object
Set of invoice attributes.
data.attributes.amountBilled
string
Invoice amount to display to end users. Determines the amount due after conversion.
data.attributes.amountCharged
string
Amount due. Determines the amount of cryptucurrency the end-user is required to pay.
data.attributes.targetAmount
string
Amount you will receive into your target currency account.
data.attributes.billedCurrency
string
data.attributes.chargedCurrency
string
data.attributes.targetCurrency
string
Settlement currency. This is the currency you will receive in your account after the payment is processed.
data.attributes.chargedTargetRate
string
Charged currency to target currency exchange rate.
data.attributes.chargedTargetRateCurrency
string
Charged currency to target currency exchange rate.
data.attributes.reference
string
The custom reference ID to tie the invoice to end-user who pays. This can be anything you choose.
data.attributes.statusContext
string
data.attributes.network
string
data.attributes.networkName
string
Network name to display.
data.attributes.paymentMethods
string
Invoice payment methods.
data.attributes.status
string
data.attributes.successRedirectUrl
string
URL your customer will be redirected from our hosted page to if the invoice completes.
data.attributes.unsuccessRedirectUrl
string
URL your customer will be redirected from our hosted page to if the invoice gets expired, cancelled or rejected.
data.attributes.paymentStatus
string
data.attributes.exchangeRate
string
Invoice exchange rate valid for 20 minutes.
data.attributes.expiresAt
string
Invoice expiry date and time.
data.attributes.createdAt
string
Date and time invoice was created at.
data.attributes.hostedPageUrl
string
Invoice hosted page.
included.type(addresses).attributes
object
Invocie receiving address. This is the address the end-user must send their crytpocurrency payment to.
included.type(binanceOrders).attributes
object
Payment instructions for an off-chain payment via the Binance application.
Response
Last updated