Skip to main content
GET
/
api
/
v1
/
invoice
Get list of invoices
curl --request GET \
  --url https://api.paylora.org/api/v1/invoice \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "total": 123,
  "data": [
    {
      "uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "user_uuid": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
      "status": "created",
      "amount": 100,
      "fee_amount": 5,
      "token_address": "0xAbC123...",
      "contract_address": "0xDeF456...",
      "network": "ethereum",
      "client": "0xDeF456...",
      "hash": "0xHash123...",
      "signature": "0xHash123...",
      "message_id": "12345",
      "channel_uuid": "12345",
      "customer_id": "123456789",
      "chain_id": 11155111,
      "url": "app.paylora.org/checkout=token"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
number

default 10

offset
number

default 0

orderType
enum<string>
Available options:
ASC,
DESC
Example:

"DESC"

startDate
string<date-time>

Start date filter

endDate
string<date-time>

End date filter

tokenAddress
string

The token address for the invoice

Example:

"0x203fC64C12a51C48755Cf77CB63c2F0618657cFD"

network
string
required

The network of the transaction

Example:

"ARB_SEPOLIA"

Response

Paginated list

success
boolean
total
integer
data
object[]