Retrieve all transactions
Retrieve and Manage All Your Transaction Data
Please note: To access your transaction data, you must include an x-token in the header of your request. This token is used to identify and authenticate your account, ensuring that all transaction information is securely retrieved and belongs only to you. Failure to include the x-token may result in unauthorized access to transaction data.
Get all transactions
GET https://api.evently.live/v1/users/txn
Query Parameters
id
string
Unique identifier of the transaction
condition
string
Current condition of the transaction (e.g. expired, cancelled)
price
integer
Price of the transaction in cents/pennies
date
string
Date of the transaction in the format YYYY-MM-DD
hash
string
Blockchain hash associated with the transaction
image
string
URL of the transaction image
client
string
Name of the client associated with the transaction
Headers
x-token*
String
Token required for secure access to transaction data
Example:
https://api.evently.live/v1/users/txnReturns
[
{
"image": "https://res.cloudinary.com/evently/image/upload/v1673635061/eeeeee_mfaywh.jpg",
"id": "10fa5796-1b78-4657-b28f-371317268272",
"hash": "0x0c10731507433fc7fa29byad276bb701f2e5dd9cdccd9c110df3f2f80058b700",
"client": "Juan Perez",
"date": "2023-04-14",
"price": 14000,
"condition": "transferred"
},
{
"image": "https://res.cloudinary.com/evently/image/upload/v1673635061/eeeeee_mfaywh.jpg",
"id": "09f8510b-2125-4c18-a214-8dd4e075d6a9",
"hash": "0x6f03a9ccdf235feb458412786a57d3ec95af6c360e475729dcdf57ae8c6bcd10",
"client": "Jason Smith",
"date": "2023-02-07",
"price": 35000,
"condition": "used"
},
{
"image": "https://res.cloudinary.com/evently/image/upload/v1673635061/eeeeee_mfaywh.jpg",
"id": "14379713-9a57-4r33-99d1-ce394d25e259",
"hash": "0xe31955a1935ca52768183115dea085c3bbb7e9b466b3e39dcade17d4ae9b2e24",
"client": "Alice Dickison",
"date": "2023-01-22",
"price": 8000,
"condition": "expired"
},
]Last updated