Vzlaonlineservices API V3
  1. SIMPLE TV
Vzlaonlineservices API V3
  • INTRODUCTION
  • CHANGELOG
  • Requests Validations
  • Hash Validations
  • Other Validations
  • Operator Validation
  • Webhook Integration
  • Webhook Notification Example
  • MOVISTAR
    • /send
      POST
    • /landline
      POST
    • /lookup
      POST
    • /pay (POSTPAID)
      POST
  • DIGITEL
    • /lookup
      POST
    • /send
      POST
    • /pay (POSTPAID)
      POST
  • MOVILNET
    • /send
      POST
  • SIMPLE TV
    • /send
      POST
    • /lookup
      POST
  • /me
    GET
  • /operators
    GET
  • /send
    POST
  • /products
    GET
  • /transaction-status/{hash}
    GET
  1. SIMPLE TV

/lookup

POST
/simpletv/lookup
Synchronous
Use this endpoint before initiating a bill payment for SimpleTV. This endpoint provides essential owner data, including the outstanding amount to be paid. Once you have retrieved the amount, you can proceed to initiate a payment request, specifying the amount in the payment request.

Request Parameters#

identifier: This parameter is required and corresponds to the user's contract number. Only the user has access to this information, and without it, it is impossible to process a lookup or make a payment towards the bill.

Request

Header Params

Body Params application/json

Example
{
    "destination": "000176001691"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/simpletv/lookup' \
--header 'x-api-key: {{apiKey}}' \
--header 'x-api-secret: {{apiSecret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "destination": "000176001691"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "OK",
    "data": {
        "destination": "2756389066",
        "operator": "MOVISTAR POSTPAID",
        "monthlyPayment": "197.32",
        "price": 8.97,
        "monthlyPaymentDescription": "197.32 VES",
        "priceDescription": "8.97 USD"
    }
}
Modified at 2025-02-11 14:45:41
Previous
/send
Next
/me
Built with