Sinpe Movil (In/Out)

Transfer via phone number (8 digits).

CountryCosta Rica
CurrencyCRC (Costa Rican colon)
Method typesinpemovil
DirectionPayIn/PayOut
Integration typeWidget/H2H
Transfer typeTransfer via phone number (8 digits).
Account number format****
Limits****

Create PayIn

Create PayIn (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin

{
  "amount": 50,                                // Payment amount
  "currency": "CRC",                           // Currency
  "invoiceId": "invoiceID",                    // Unique invoice identifier on the merchant side
  "clientId": "clientID",                      // Unique client identifier on the merchant side
  "type": "sinpemovil",                        // Method type
  "lang": "EN"                                 // Optional (widget): localization EN/ES
}

H2H Response Example (payin/credentials)

{
    "account_number": "12345678",
    "account_owner": "account_ownerID",
    "account_iban": "",
    "account_phone": "",
    "currency": {
        "_id": "07c5a7bf-cb12-4971-b866-fa1aed7e8bc1",
        "type": "FIAT",
        "code": "CRC",
        "symbol": "₡",
        "label": "₡",
        "decimal": 0,
        "countryName": "Costa Rica",
        "countryCode": "CR"
    },
    "bank": {
        "_id": "febb17b1-b98c-437b-ab93-52341168897b",
        "name": "",
        "alias": "anybank",
        "currency": "CRC",
        "currencyId": "07c5a7bf-cb12-4971-b866-fa1aed7e8bc1",
        "country": "CR",
        "logo": {
            "short": "https://1.gravatar.com/avatar/bdfe3e619e7589d8c567e07b485f640aadd457801f67ed50d4196b3a84c33ed0?size=64",
            "full": "https://1.gravatar.com/avatar/bdfe3e619e7589d8c567e07b485f640aadd457801f67ed50d4196b3a84c33ed0?size=256"
        },
        "type": "bank",
        "automationAvailable": true,
        "enabled": true,
        "isTopBank": false,
        "tagColor": "#DA291C",
        "isAnyBank": true,
        "supportedPaymentSystems": []
    },
    "type": "custom",
    "account_subtype": "sinpemovil"
}

Create PayOut request

Create PayOut (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin

{
    "amount":10,                                  // Payment amount
    "currencyTo": "CRC",                          // Currency
    "clientId": "clientId",                       // Unique client identifier on the merchant side
    "recipient": {                                // Recipient information 
        "account_number": "12345678",             // Mobile number linked to recipient's account
        "account_owner": "account_ownerID",       // Recipient's full name (account holder)
        "type": "phone"                           // Recipient account type
    },
    "type": "sinpemovil"                          // Method type
}

Did this page help you?