Skip to content
Authorization<token>

Use a public key (pk./pk_test.) for payment initialization. Use a secret key (sk./sk_test.) for sensitive operations (transfers, refunds, balance), or a restricted key (rk./rk_test.) scoped to specific permissions. The _test. variant of any key selects the sandbox environment — there is no separate sandbox URL. Never expose your secret key in client-side code.

In: header

Path Parameters

id*string

Response Body

application/json

application/json

curl -X GET "https://example.com/transfers/architecto"
GET
/transfers/{id}
{
  "code": 200,
  "status": "OK",
  "message": "Transfer retrieved",
  "transfer": {
    "id": "po_01JXXX",
    "reference": "N7vW4mX1kQ8",
    "amount": 10000,
    "currency": "XAF",
    "status": "succeeded",
    "complete": true
  }
}
{
  "code": 404,
  "status": "Not Found",
  "message": "Transfer Not Found"
}