Partner API
test
  • latest
  • test
    Partner API
    test
    • latest
    • test
    • Back to home
    • SEPA Transfers
    • Create a SEPA Transfer
      POST
    • Get SEPA Transfer Details
      GET
    • Get SEPA Deposit Info
      GET

      Get SEPA Transfer Details

      Testing
      Testing Env
      https://partner-api-stage.p100.io
      Testing Env
      https://partner-api-stage.p100.io
      GET
      /v1/sepa-transfer/details/{transferId}
      This endpoint returns detailed information about a specific SEPA transfer initiated from the partner account.
      It provides all key transfer details, including amount, currency, receiver information, IBAN, status, fees, and creation timestamp.
      Use this endpoint to track the status and outcome of a SEPA transfer after creation, verify if it was successful, or retrieve the data for reporting and reconciliation.

      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
      🟠404P428: Sepa transfer not found
      🟠400P500: Unknown exception
      🟠400P501: Service temporarily unavailable
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://partner-api-stage.p100.io/v1/sepa-transfer/details/45e69696-98bb-44f6-9996-9bb28834a538' \
      --header 'x-api-key: <api-key>'
      Response Response Example
      200 - Success
      {
          "id": "45e69696-98bb-44f6-9996-9bb28834a538",
          "type": "external",
          "amount": "16.02",
          "transferTitle": "Bank Transfer",
          "destinationIban": "PL09102044050000210205531111",
          "receiverFirstName": "John",
          "receiverLastName": "Doe",
          "status": "SUCCESSFUL",
          "currency": "eur",
          "fee": 0.02,
          "createdAt": "2025-10-01T11:58:15.139Z"
      }
      Previous
      Create a SEPA Transfer
      Next
      Get SEPA Deposit Info
      Built with