Request
GET https://www.cekid.fazonedigital.com/api/v1/check/clash-royale?player_tag=player_tag
Parameter
| Key | Label | Type | Required |
|---|---|---|---|
player_tag | Player Tag | text | Yes |
Output
| Key | Label | Visibility |
|---|---|---|
nickname | Nickname | public |
region | Region / Server | public |
status | Status | public |
PHP Example
$timestamp = time();
$query = http_build_query(['player_tag' => 'VALUE'], '', '&', PHP_QUERY_RFC3986);
$canonical = $timestamp."\nGET\n/api/v1/check/clash-royale\n".$query;
$signature = hash_hmac('sha256', $canonical, $secret);