Skip to content

Instantly share code, notes, and snippets.

@elsayed85
Last active January 1, 2025 19:18
Show Gist options
  • Save elsayed85/651b714b71111ea25afc38164b46264b to your computer and use it in GitHub Desktop.
Save elsayed85/651b714b71111ea25afc38164b46264b to your computer and use it in GitHub Desktop.
Replace 351941237314725 With Your IMEI
curl 'https://api-citizens-prod-imei.gs-ef.com/ceirimeicheck/api/v1/imei/check'
-H 'Host: api-citizens-prod-imei.gs-ef.com'
-H 'Content-Type: application/json'
-H 'Accept: */*'
-H 'Connection: keep-alive'
-H 'Accept-Language: en'
-H 'Content-Length: 34'
-H 'Accept-Encoding: gzip, deflate, br'
-H 'User-Agent: CitizenApp_Ntra/1.0.0 CFNetwork/1568.300.101 Darwin/24.2.0'
--data '{"imeiNumber":["351941237314725"]}'
{
"status":{
"code":200,
"errorMsg":null,
"error":null,
"errorData":null
},
"result":{
"model":"Apple A2221/Apple iPhone 11",
"status":"REGISTERED",
"active":"ACTIVE",
"manufacturerName":"Apple",
"numberOfTrialsLeft":8,
"deviceImeiNumber":2,
"amount":0.0
},
"paginationInfo":null
}
@hitmangy
Copy link

hitmangy commented Jan 1, 2025

is it blocked, not working for me !!

@elsayed85
Copy link
Author

@hitmangy i think its working on egypt only

@polaamgad88
Copy link

I think it's blocked

@elsayed85
Copy link
Author

@polaamgad88 yes maybe

@QHegazy
Copy link

QHegazy commented Jan 1, 2025

@polaamgad88

Example: IMEI Check API Request and Response

cURL Request

curl -X POST 'https://api-citizens-prod-imei.gs-ef.com/ceirimeicheck/api/v1/imei/check' \
-H 'Host: api-citizens-prod-imei.gs-ef.com' \
-H 'Content-Type: application/json' \
-H 'Accept: */*' \
-H 'Connection: keep-alive' \
-H 'Accept-Language: en' \
-H 'Accept-Encoding: gzip, deflate, br' \
-H 'User-Agent: CitizenApp_Ntra/1.0.0 CFNetwork/1568.300.101 Darwin/24.2.0' \
--data '{"imeiNumber":["5464654654"]}'

response

{
  "status": {
    "code": 200,
    "errorMsg": null,
    "error": null,
    "errorData": null
  },
  "result": {
    "model": "ExampleDevice ModelX",
    "status": "REGISTERED",
    "active": "ACTIVE",
    "manufacturerName": "ExampleCorp",
    "numberOfTrialsLeft": 3,
    "deviceImeiNumber": 1,
    "amount": 0.0
  },
  "paginationInfo": null
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment