BetaThe V4 API is in beta — endpoints and functionality may change.
FaceTimev2

Initiate a FaceTime call (Coming Soon)

POST/facetime/calls

Coming Soon -- This endpoint is temporarily disabled while we stabilize the FaceTime call flow.

Initiates a FaceTime call to the specified phone number or email address. Returns a shareable FaceTime link that anyone can use to join the call. The call will ring the contact and auto-admit the first person who joins via the link.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Body parameters

JSON
handleRequiredstring

Phone number (E.164) or email address to call

Returns

successoptionalboolean
linkoptionalstring

Shareable FaceTime link

handleoptionalstring

The handle that was called

Response codes

200FaceTime call initiated
400Invalid request parameters
401Authentication required or invalid

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X POST https://api.blooio.com/v2/api/facetime/calls \  -H "Authorization: Bearer bl_live_..." \  -H "Content-Type: application/json" \  -d '{    "handle": "+15551234567"  }'
Body object
Response objectexample
{  "success": false,  "link": "https://facetime.apple.com/join#v=1&p=xxx",  "handle": "blooio"}