Skip to main content
Endpoint, parameters, response, and code samples for retrieving transaction history or a statement for an external dedicated wallet.

Full API reference (Swagger)

Request/response schemas and try-it-out are in the Payvessel PMS Swagger under External Dedicated Wallet: External Dedicated Wallet — Swagger Locate the statement or transaction history operation for the exact path, method (typically GET), query parameters (e.g. date range, pagination), and response body.

Base URL and headers

EnvironmentBase URL
Productionhttps://api.payvessel.com
Sandboxhttps://sandbox.payvessel.com
HeaderRequiredDescription
api-keyYesYour Payvessel public API key
api-secretYesBearer YOUR_SECRET_KEY

Example (generic)

After you have the path from Swagger (e.g. GET /pms/api/.../wallet/{id}/statement):
curl -X GET "https://api.payvessel.com/pms/api/.../wallet/WALLET_ID/statement?from=2024-01-01&to=2024-01-31" \
  -H "api-key: YOUR_API_KEY" \
  -H "api-secret: Bearer YOUR_SECRET"
Replace the path, WALLET_ID, and query parameters with the values from the Swagger definition. Response shape (e.g. list of transactions) is documented there. For the conceptual guide, see Wallet Statement (guide).