Partner API
  1. Partner Operations
Partner API
  • Getting Started
    • Introduction
    • Authentication
    • Business Use Cases
  • API References
    • Partner Operations
      • Get Balances
        GET
      • Get Transaction History
        GET
      • Retrieve Exchange Rate and Create a Lock
        GET
      • Create and Finalize an Exchange
        POST
      • Create Crypto Withdrawal
        POST
      • Create a SEPA Transfer
        POST
      • Get SEPA Transfer Details
        GET
    • User Accounts with KYC
      • Create User Account and Generate Balances
      • Add KYC File
      • Add POA File
      • Add User Verification
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • User Accounts without KYC
      • Create User Account and Generate Balances Without KYC
      • Update Existing User
      • Delete User
      • Suspend User
      • Unsuspend User
      • Get User Balances
      • Get User Transaction History
    • KYC by P100
      • Creating KYC Verification
      • Redirect to Verification
      • Get KYC Status
    • Currency Exchange
      • Retrieve Exchange Rate
      • Retrieve Exchange Rate and Create a Lock
      • Create and Finalize an Exchange
      • Retrieve Detailed Exchange Infromation
    • Crypto Deposits
      • Update Travel Rule
    • Crypto Withdrawals
      • Get Network Fee
      • Create Crypto Withdrawal
      • Get Crypto Withdrawal Details
    • Internal Transfers
      • Create a Transfer
      • Get Transfer Details
    • Virtual Cards
      • Create Virtual Card
      • Get All User Cards
      • Get Card Details
      • Update Card PIN
      • Block Card
      • Unblock Card
      • Get Card Limits
      • Update Card Limits
      • Delete Card
    • Custom Fiat Operations
      • SEPA Deposit & Withdrawal
  • Integration
    • SDKs & Integration Guides
    • Transaction Processing
    • Error Handling
    • Rate Limiting
    • Webhooks
      • User & KYC Webhooks
        • User Balance Generation
        • KYC File Added
        • POA Verification Status
        • KYC Verification Status
      • Transfers & Payments Webhooks
        • P2P Transfer Webhook
        • SEPA Transfer
        • SEPA Deposit
        • Crypto Withdrawal
        • Crypto Deposit
        • Exchange
        • Card Transaction
      • Card Webhooks
        • Card 3DS Code
        • Card Activation Code
  • Reference
    • Supported Countries
    • Supported Currencies
    • Fees
    • FAQ
    • Changelog
    • Support
  1. Partner Operations

Get Transaction History

Testing Env
https://partner-api-stage.p100.io
Testing Env
https://partner-api-stage.p100.io
GET
/v1/partner/transaction-history/{month}/{year}
Retrieves the transaction history for the partner account for the selected month and year. This endpoint returns a detailed list of crypto and fiat transactions along with metadata such as type, amount, currency, status, and timestamps.
You can request transaction history for any month within the past 12 months.
Returned data includes:
Transaction type (e.g. deposit, withdrawal, exchange, card payment, etc.)
Amount and currency
Status of the transaction (e.g. SUCCESSFUL, IN_PROGRESS)
Timestamps and additional metadata
This allows partners to audit account activity, display history in partner portals, and analyze financial flows for compliance or support purposes.

Transaction Types#

TypeDescription
exchangeCurrency exchange
sepaDepositIncoming SEPA transfer
sepaTransferOutgoing SEPA transfer
transferInternal transfer
cryptoDepositIncoming crypto deposit
cryptoWithdrawalOutgoing crypto withdrawal
refundFull refund
fiatWithdrawalWithdrawal of fiat funds
transactionGeneric transaction (fallback)

Transaction Statuses#

StatusDescription
SUCCESSFULTransaction completed successfully
UNSUCCESSFULTransaction failed
IN_PROGRESSTransaction is currently being processed
IN_PROGRESS_TR_DATAWaiting for completion of travel rule data input
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://partner-api-stage.p100.io/v1/partner/transaction-history//' \
--header 'x-api-key;'
Response Response Example
200 - Success
[
    {
        "id": "18b362ed-1ea5-493a-908f-deb280d6d666",
        "createdAt": "2025-06-18T21:04:48.426Z",
        "type": "transfer",
        "amount": 0.000011,
        "currency": "btc",
        "status": "SUCCESSFUL"
    },
    {
        "id": "05eb9629-c66f-4cc9-9f44-f23e2c7d33bd",
        "createdAt": "2025-06-18T21:03:32.445Z",
        "type": "sepaTransfer",
        "amount": -3.83,
        "currency": "eur",
        "status": "IN_PROGRESS",
        "transferTitle": "Partner SEPA Transfer"
    },
    {
        "id": "23fb400a-31b8-4406-a86b-587a576526f5",
        "createdAt": "2025-06-18T21:03:26.638Z",
        "type": "cryptoWithdrawal",
        "amount": 0.002021,
        "currency": "eth",
        "status": "SUCCESSFUL"
    },
    {
        "id": "55592d35-c821-47ca-a2a3-86a382ec019a",
        "createdAt": "2025-06-18T21:03:19.296Z",
        "type": "exchange",
        "amount": 7.645049,
        "amountFrom": -6.76,
        "currency": "usdc",
        "currencyFrom": "eur",
        "status": "SUCCESSFUL"
    },
    {
        "id": "1fd9bac8-3796-48b1-9c35-00dcc22cdba6",
        "createdAt": "2025-06-18T20:39:30.443Z",
        "type": "transfer",
        "amount": -2.622767,
        "currency": "usdc",
        "status": "SUCCESSFUL"
    },
    {
        "id": "a79e79cb-1f87-42bd-be85-73c81bcb12ae",
        "createdAt": "2025-06-18T20:38:49.351Z",
        "type": "sepaTransfer",
        "amount": -6.66,
        "currency": "eur",
        "status": "IN_PROGRESS",
        "transferTitle": "Partner SEPA Transfer"
    },
    {
        "id": "8d9d01d0-8b09-46cf-a766-e56e14e63d6b",
        "createdAt": "2025-06-18T20:37:28.959Z",
        "type": "cryptoWithdrawal",
        "amount": 0.002016,
        "currency": "eth",
        "status": "SUCCESSFUL"
    },
    {
        "id": "8385a82b-288c-435d-aa6a-7e2770b86076",
        "createdAt": "2025-06-18T20:36:37.635Z",
        "type": "exchange",
        "amount": 3.477582,
        "amountFrom": -19.027564,
        "currency": "usdc",
        "currencyFrom": "pol",
        "status": "SUCCESSFUL"
    },
    {
        "id": "9d3277d5-b1ac-45ba-93de-4d6bba8e799e",
        "createdAt": "2025-06-18T19:56:47.705Z",
        "type": "transfer",
        "amount": 0.000007,
        "currency": "btc",
        "status": "SUCCESSFUL"
    },
    {
        "id": "69d05570-ed90-418f-bca8-53e3f8778fbf",
        "createdAt": "2025-06-18T19:55:55.284Z",
        "type": "transfer",
        "amount": 1.56,
        "currency": "eur",
        "status": "SUCCESSFUL"
    }
]

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or
Path Params

Responses

🟢200Success
application/json
Body

🟠401Access Denied
🟠400P435: Invalid date
🟠400P500: Unknown exception
🟠400P501: Service temporarily unavailable
Previous
Get Balances
Next
Retrieve Exchange Rate and Create a Lock
Built with