HollaTags API
  • Introduction
  • 📳SMS
    • Send
    • Receive
    • Status
    • Credit
    • Lookup
    • Send SMS Sample Code
    • Receive SMS Sample Code
    • API Response
    • Callback
    • OTP
    • SMS DLR Error Codes
  • 📳USSD
    • USSD Inbound
    • USSD Outbound
    • USSD Sample Code
    • USSD Error Codes
  • 📳WhatsApp
    • WhatsApp Chat
    • WhatsApp Push
    • WhatsApp Sample Code
  • 📳SMPP
    • SMPP Specification
    • SMPP Servers
    • SMPP Authentication
    • SMPP Configuration
    • SMPP Message PDU
    • SMPP Client Configuration
    • SMPP Response Codes
    • SMPP DLR Codes
  • 💳Airtime
    • Airtime (VTU)
  • ❓FAQ
    • USSD - Dedicated
    • USSD - Shared
Powered by GitBook
On this page

Was this helpful?

  1. SMS

Lookup

Lookup

POST https://sms.hollatags.com/api/lookup/

The Lookup API provides a way to retrieve additional information about a mobile number like the Carrier information and Ported status. This is only available for Nigerian mobile numbers at this time.

The POST parameters should be sent as x-www-form-urlencoded

Request Body

Name
Type
Description

user

string

Account username

pass

string

Account password

msisdn

integer

Mobile number (must be in international format e.g 23480**)

{
    "country":"Nigeria",
    "msisdn":"234803xxxxxxx",
    "operator":"MTN",
    "ported":"FALSE"
}
PreviousCreditNextSend SMS Sample Code

Last updated 3 years ago

Was this helpful?

📳