Get list of celebrities having birthdya today.
This api is providing all basic information about your favourite celebrities. To avoid misuse of resource it will display maximum 100 results per query and today's birthday celebrity only.
Following outputs are available for each result:
Use these detaisl to get latest results :
End Point: https://wishiy.com/api/today
Method: POST
Body:
limit: (interger) maximum upto 100
response: (string) value "json"
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => "http://wishiy.com.test/api/today",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => array('response' => 'json','limit' => '100'),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;