get
https://cs-api.sandbox.paybis.com/v1/event/pay-in
Retrieve a paginated list of all crypto pay-in transactions.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
This endpoint retrieves a paginated list of all Pay-in (Virtual Sell) transactions associated with your account.
Purpose
- History and Reporting: View a log of all past and current deposit attempts.
- Reconciliation: Iterate through transactions to reconcile them with your internal records.
- Dashboard Display: Useful for showing a history of deposits in an admin panel or user interface.
Request Parameters
| Parameter | Type | Location | Required | Description |
|---|---|---|---|---|
Authorization | String | Header | Yes | Your API Key. |
page | Integer | Query | No | Current page number. Default: 0. |
limit | Integer | Query | No | Number of items per page. Default: 10. |
Response
The response returns a paginated list of pay-in objects.
Response Body Schema:
| Field | Type | Description |
|---|---|---|
status | String | API request status (e.g., "success"). |
result | Object | Wrapper for the list and pagination data. |
result.pagination | Object | Contains page, limit, and total count of pay-ins. |
result.items | Array | List of pay-in transactions. |
result.items[].event_id | String | Your unique event identifier. |
result.items[].transaction_id | String | Paybis internal transaction ID. |
result.items[].status | String | Current status (e.g., waiting_funds, completed). |
result.items[].blockchain_address | String | The crypto deposit address generated for the transaction. |
result.items[].fiat | Object | Fiat amount details (amount, currency). |
result.items[].crypto | Object | Crypto amount details (amount, currency). |
result.items[].rate | String | The exchange rate applied (nullable). |
Example Response
{
"status": "success",
"result": {
"pagination": {
"page": 0,
"limit": 10,
"total": 45
},
"items": [
{
"event_id": "e24b0081-8a83-4705-8cd5-7293f2c1c302",
"transaction_id": "tx-12345",
"status": "completed",
"blockchain_address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
"fiat": {
"amount": "100.00",
"currency": "EUR"
},
"crypto": {
"amount": "0.05",
"currency": "ETH"
},
"rate": "2000.00"
},
{
"event_id": "a98b7762-1c23-4405-9ad5-1293f2c1c999",
"transaction_id": "tx-67890",
"status": "waiting_funds",
"blockchain_address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"fiat": {
"amount": "50.00",
"currency": "USD"
},
"crypto": {
"amount": "0.0015",
"currency": "BTC"
},
"rate": "93000.00"
}
]
}
}