iMessage check

Checking if phone number has iMessage

To check if phone number uses iMessage, you can send the following POST request with tool of your choice (like Postman), or use any of the programming languages that support REST API calls.

You can only do that if you have an iMessage device (that can only be set up by BluBubl team).

Using API

POST https://blububl.com/api/check-imessage

Headers

Name
Type
Description

Content-Type*

The value should be "application/json"

Authorization*

The value should be "Bearer API_KEY", where API_KEY is the API key that you can see in the API Console

Request Body

Name
Type
Description

phone_number*

String

Phone number that you want to check. International format, with prefix, like +11234567890

sim_card_id

Number

(Optional) Id of the iMessage virtual SIM card that you want to use for the check. Can be found in the Devices Console, by clicking on the device having the SIM card you need

{
  ok: true,
  imessage: true
}

Last updated