PagoMovil PayOut

Payment registration transactions

PagoMovil HPP & H2H


2. PagoMovil Out

Description:
PagoMovil is a mobile payment system in Venezuela that allows users to send and receive money instantly between bank accounts using just a phone number, national ID (cédula), and the recipient’s bank name. It operates through participating Venezuelan banks and is commonly used for quick, everyday transactions without needing full account details. Once users register their phone number with their bank, they can transfer funds in real time through their bank’s app or SMS service.
 
Allows the creation of payouts (outgoing payments).
 
URL:https://api.payelu.xyz/api/v1/payments/payout_hth
 

Country Uses:

  • Venezuela: PagoMovil
 

Request Parameters:

Parameter
Type
Description
Requeriment
service_code
string
PM_VEN
required
amount
num
Amount to process. e.g. 123.45
required
reference
string
Merchant’s Unique ID for transaction. It must be 22 alfanumeric digits (i.e. ‘0000000000002507135224‘)
required
account_doc_id
num
Receiver’s National ID which is “Cédula de Identidad”
required
account_bank
num
Code of specific bank of receiver. It’s provided
required
account
num
Bank account number of receiver
required
account_beneficiary
string
Receiver’s name, must contain at least one Name and one Last Name
required
account_doc_type
string
Stands for “V”, “E” or “P”. It means the type of ID: Venezolano, Extranjero or Pasaporte
required

PagoMovil Example Request:

{ "service_code": "PM_VEM", "amount": 50, "reference": "0000000000002507135224", "rq_account_beneficiary": "Pedro Perez", "rq_account_doc_id": "10515819", "rq_account_doc_type": "V", "rq_account": "01340120941203045014", "rq_account_bank": "0134" }

PagoMovil Example Response:

{ "status": "success", "data": { "transaction_id": "GGRMCD", "amount": 10, "reference": "110932017", "created_at": "2025-07-28T23:29:31.905207+00:00", "status": "COMPLETED", "message": "Referencia: 0000000000002507135224" } }