The Americas | |
---|---|
+1 | USA / Canada |
+52 | Mexico |
+55 | Brazil |
Africa | |
+213 | Algeria |
+27 | South Africa |
Europe | |
---|---|
+30 | Greece |
+31 | Netherlands |
+33 | France |
+34 | Spain |
+351 | Portugal |
+359 | Bulgaria |
+39 | Italy |
+40 | Romania |
+41 | Switzerland |
+420 | Czech Republic |
+44 | United Kingdom |
+46 | Sweden |
+49 | Germany |
Eurasia / Asia / Oceania | |
---|---|
+61 | Australia |
+7 | Russia |
+81 | Japan |
+852 | Hong Kong |
+86 | China |
+886 | Taiwan |
+91 | India |
+92 | Pakistan |
+965 | Kuwait |
+972 | Israel |
1. To verify, we send a secret code, like 123456 to the index.
y ....123456..... " or %
2. User enters that code at your website.
123456
submit
3. Profit!
Use this verification as you would a successful login, complete with correct login & password.
Manage sessions, create cookies, grant super powers admin privileges.
Check out what each account type can do and sign up for our pre-releases!
The free offerring is email-verification only.
Price | Free | Email Verifications | 100/month |
---|---|---|---|
SMS Verifications | None | Whitelist | Required - Indexes only |
Our first formal offering. As a token of our appreciation to our testers, the alpha will be 100% free.
Price | Free, even text messages! | Email Verifications | 400/month |
---|---|---|---|
SMS Verifications | 400/month - +1 only (USA/CAN) | Whitelist | Required - Indexes only |
As we near our initial release, we'll add international support, IVR verification, and other features.
Price | Pay per text ( varies by country ) | Email Verifications | 1000/month |
---|---|---|---|
SMS Verifications | International & 2000/month | IVR Verifications | International - English Only |
Multiple apps | Up to 5 applications | Whitelists & Blacklists | IPs, Indexes, and Countries |
Our RESTful APIs will have you ready to rock in seconds.
Two quick API calls; that's all it takes.
With a library, it's even easier than pie.
Here's a quick code example using our PHP library.
# Request a verification be sent to an index.
require_once('ZypCredsREST.php');
$x = new ZypCredsREST( $your_api_id, $your_api_key );
$x->request_verification( $index_to_verify );
return $x->result_bool;
# Verify a code provided by user
require_once('ZypCredsREST.php');
$x = new ZypCredsREST( $your_api_id, $your_api_key );
$x->verify_code( $index_to_verify, $code_from_user );
return $x->result_bool;