Live Entries

Get live entries

Request URL

http://fanvictor.com/api/mobile/LiveEntries/{api_key}/{user_id}?detail={detail}

Request Method

GET

Request parameters

api_key
string
Subscription key which provides access to this API.
user_id
interger
User id of account from client site.
detail (Optional)
interger
1 or 0. Return user list that pick team or draft player

Sample Code

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://fanvictor.com/api/mobile/LiveEntries/{api_key}/{user_id}?detail={detail}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec ($ch);
curl_close ($ch);