/v1/event/pay-in

Retrieve a paginated list of all crypto pay-in transactions.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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

ParameterTypeLocationRequiredDescription
AuthorizationStringHeaderYesYour API Key.
pageIntegerQueryNoCurrent page number. Default: 0.
limitIntegerQueryNoNumber of items per page. Default: 10.

Response

The response returns a paginated list of pay-in objects.

Response Body Schema:

FieldTypeDescription
statusStringAPI request status (e.g., "success").
resultObjectWrapper for the list and pagination data.
result.paginationObjectContains page, limit, and total count of pay-ins.
result.itemsArrayList of pay-in transactions.
result.items[].event_idStringYour unique event identifier.
result.items[].transaction_idStringPaybis internal transaction ID.
result.items[].statusStringCurrent status (e.g., waiting_funds, completed).
result.items[].blockchain_addressStringThe crypto deposit address generated for the transaction.
result.items[].fiatObjectFiat amount details (amount, currency).
result.items[].cryptoObjectCrypto amount details (amount, currency).
result.items[].rateStringThe 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"
      }
    ]
  }
}
Query Params
integer
Defaults to 0
integer
Defaults to 10
Responses

Language
Credentials
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json