Skip to main content

Endpoint

GET https://pay.sandbox.yabetoopay.com/v1/remittance   # Sandbox
GET https://pay.api.yabetoopay.com/v1/remittance       # Production

Authentication

Use your secret key in the Authorization header:
Authorization: Bearer YOUR_SECRET_KEY

Query Parameters

ParameterTypeDescription
limitintegerNumber of items per page (default: 10, max: 100)
pageintegerPage number (starts at 1)

Example Request

curl "https://pay.sandbox.yabetoopay.com/v1/remittance?limit=10&page=1" \
  -H "Authorization: Bearer YOUR_SECRET_KEY"

Response

200 OK

{
  "data": [
    {
      "id": "rem_RMqehxy8NNi1ocJFG2SSAZMj81m6spo72vnZ",
      "object": "remittance",
      "amount": 1000,
      "currency": "xaf",
      "status": "succeeded",
      "firstName": "John",
      "lastName": "Doe",
      "operatorName": "mtn",
      "country": "cg",
      "phone": "242066594470",
      "type": 1,
      "shouldExecutedAt": "2025-03-18T09:24:57.555Z",
      "createdAt": "2025-03-17T10:24:57.559+01:00",
      "updatedAt": "2025-03-17T10:24:57.559+01:00"
    }
  ],
  "meta": {
    "total": 45,
    "page": 1,
    "limit": 10,
    "pages": 5
  }
}

Remittance Status

StatusDescription
pendingRemittance is waiting to be processed
processingRemittance is being processed
succeededRemittance completed successfully
failedRemittance failed

401 Unauthorized

{
  "message": "Unauthorized"
}