Skip to main content
GET
/
api
/
v1
/
transactions
/
profile
/
{reference}
Get Transactions by Profile
curl --request GET \
  --url https://sandbox.oumla.com/api/v1/transactions/profile/{reference} \
  --header 'x-api-key: <api-key>'
{
  "transactions": [
    {
      "addressFrom": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
      "addressTo": "0x8ba1f109551bD432803012645Hac136c22C929",
      "amount": "1000000000000000000",
      "date": "2024-01-01T00:00:00.000Z",
      "isMempool": false,
      "isSpent": false,
      "status": "Confirmed",
      "updatedAt": "2024-01-01T00:00:00.000Z",
      "createdAt": "2024-01-01T00:00:00.000Z",
      "type": "Deposit",
      "network": "ETH",
      "txid": "0x1234567890abcdef",
      "contractAddress": "0xContractAddress",
      "tokenId": "1",
      "txType": "transfer",
      "fee": "21000"
    }
  ],
  "pagination": {
    "totalElements": 100,
    "totalPages": 10,
    "skip": 0,
    "take": 10
  }
}

Authorizations

x-api-key
string
header
required

API key for authentication. Obtain your API key from the dashboard.

Headers

x-sdk-version
string
default:1.0.0

SDK version header

Path Parameters

reference
string
required

Profile or organization reference identifier

Query Parameters

skip
integer
default:0

Number of records to skip

Required range: x >= 0
take
integer
default:10

Number of records to take

Required range: 1 <= x <= 100

Response

Transactions retrieved successfully

Transactions by profile response object

transactions
object[]
pagination
object

Pagination