verify addresses using smartystreets api Sometimes the best way to learn a new API is to hit the ground running. Or, as Tony Stark says, “Sometimes you have to run before you can walk.” In accordance, here are some resources to help you fly (like Ironman does). function Address_Verification($add1=null,$add2=null,$add3=null) { // Customize this (get ID/token values in your SmartyStreets account) $authId = urlencode(“AUTH_ID_HERE”); $authToken = urlencode(“AUTH_TOKEN_HERE”); // Address input $input1 = urlencode($add1); // home address $input2 = urlencode($add2); // city and state here ...