Skip to content
Get started
V2 Reference
Utilities

Check iMessage Availability

POST
/api/partner/v2/i_message_availability/check
curl --request POST \
--url https://api.linqapp.com/api/partner/v2/i_message_availability/check \
--header 'Content-Type: application/json' \
--header 'X-LINQ-INTEGRATION-TOKEN: <X-LINQ-INTEGRATION-TOKEN>' \
--data '{ "phone_number": "+15551234567" }'

Checks if a phone number is registered with iMessage.

Rate Limit: This endpoint is limited to 1 request per 10 seconds. Exceeding this limit will result in a 429 error response.

Media type application/json
object
phone_number
required
string
Example
+15551234567

Successful response

Media type application/json
object
available
boolean
phone_number
string
Example
{
"available": true,
"phone_number": "+15551234567"
}