Sinpe Movil Payin

 
Payment registration transactions

SINPE Movil HPP & H2H


1. SINPE Movil

Description:


Sinpe Móvil is a mobile payment platform operated by the Central Bank of Costa Rica (Banco Central de Costa Rica). It allows users to send and receive money instantly using just a phone number, without needing bank account details.
 
Allows the creation of pay-ins (incoming payments).
 
URL:https://api.payelu.xyz/api/v1/payments/payin_hth
 

Country Uses:

  • Costa Rica: Sinpe Movil
 

Request Parameters:

Parameter
Type
Description
Requeriment
service_code
string
YAPE_PE
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
Client ID number
required
account_doc_type
string
Type of tax document or identity document. Supported identity/tax documents: 0 - Cédula de Identidad - 1 - DIMEX (Documento de Identidad Migratorio para Extranjeros)
required
account_phone
num
Sinpe number of payer
required

Sinpe Movil Example Request:

{ "service_code": "SINMOV_CR", "amount": 110, "reference": "REF1234567980", "account_doc_id": "304740557", "account_doc_type": "0", "account_phone": "+50687123575" }

Sinpe Movil Example Response:

{ "status": "success", "data": { "transaction_id": "cmppzsihzd6d2id596wv6j5bw", "amount": 110, "currency": "CRC", "status": "PENDING", "reference": "REF1234567980", "created_at": "2026-05-28T21:15:40.125549+00:00", "updated_at": "2026-05-28T21:15:40.125549+00:00", "expired_at": "2026-05-28T21:20:40.125549+00:00", "redirect_hpp_url": "XXXXX" } }
After receiving redirect_hpp_url, you need to redirect the client to the URL and wait for the final status of the transaction.