Skip to main content
POST
/
v1
/
service
/
recharge
/
mobile
/
info
Mobile Info
curl --request POST \
  --url https://base_url/v1/service/recharge/mobile/info \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mobile": "9876543210"
}
'
{
  "code": "0x0200",
  "status": "SUCCESS",
  "message": "Mobile Operator Fetched Successfully",
  "data": {
    "mobile": "9876543210",
    "operator": "Reliance Jio Infocomm Limited",
    "operatorCode": "11",
    "circle": "UP East",
    "circleCode": "54",
    "logo": "https://url/public/upload/mobile_recharge_logo/jio.png",
    "message": "Successfully"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
mobile
string
required

Response

OK

code
string
required
status
string
required
message
string
required
data
Data4 · object
required