Find contact
To find a contact and list details about it, you must URL encode the contact's email address or user ID and pass it into the request URL.
[GET] /v1/contacts/find/:user_email_or_id
Example request
email="johndoe%40gmail.com"
url="https://www.loopbear.com/api/v1/contacts/find/$email"
curl -X GET "$url" \
-H "Content-Type: application/json" \
-H "X-Api-Key: YOUR_SECRET_KEY"