fork download
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. CURLOPT_URL => 'https://a...content-available-to-author-only...t.io/v2/email_finder/instant',
  6. CURLOPT_RETURNTRANSFER => true,
  7. CURLOPT_ENCODING => '',
  8. CURLOPT_MAXREDIRS => 10,
  9. CURLOPT_TIMEOUT => 0,
  10. CURLOPT_FOLLOWLOCATION => true,
  11. CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  12. CURLOPT_CUSTOMREQUEST => 'POST',
  13. CURLOPT_POSTFIELDS =>'{
  14. "name": "Steve Morris",
  15. "domain": "apple.com",
  16. "timeout": 30000,
  17. "queue": false
  18. }',
  19. CURLOPT_HTTPHEADER => array(
  20. 'Content-Type: application/json',
  21. 'Authorization: 7f438d8a0cdf2748d5ff56409f0930b0:80e001f09882c6ce6baefcf7935d5ca5f0315a78acbe183ea41c7ac84f4342de'
  22. ),
  23. ));
  24.  
  25. $response = curl_exec($curl);
  26.  
  27. curl_close($curl);
  28. echo $response;
  29.  
Success #stdin #stdout 0.03s 26508KB
stdin
Standard input is empty
stdout
Standard output is empty