Phone Numbersv4
Look up a phone number (POST)
POST
/phone-numbers/lookupSame as the GET form, accepting the number in a JSON body. Returns parsed info / geocoding for a phone number. Requires an enterprise plan.
Headers
AuthorizationRequiredstringYour 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
JSONnumberRequiredstringPhone number in E.164.
Returns
dataoptionalobjectResponse codes
200Lookup result
400The request was malformed — check the path, query parameters, and body.
401Your API key is missing or invalid. Pass it as a bearer token.
403Your API key isn't allowed to access this phone number (blocked key or plan limit).
Sends a live request with your values and shows the real response below. Your key is stored only in this browser.
curl -X POST https://api.blooio.com/v4/phone-numbers/lookup \ -H "Authorization: Bearer bl_live_..." \ -H "Content-Type: application/json" \ -d '{ "number": "+15551234567" }'{ "data": {}}