fork download
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. CURLOPT_URL => 'https://c...content-available-to-author-only...w.space/api/v0.1/countries/population/cities/filter',
  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. "limit": 10,
  15. "order": "asc",
  16. "orderBy": "name",
  17. "country": "nigeria"
  18. }',
  19. ));
  20.  
  21. $response = curl_exec($curl);
  22.  
  23. curl_close($curl);
  24. echo $response;
  25.  
  26. ?>
  27.  
Success #stdin #stdout 0.04s 26080KB
stdin
Standard input is empty
stdout
Standard output is empty