There are some good tutorials which might help you send a JSON request via PHP cURL:
Getting jSON Data with PHP (curl method)
Here is a simple script that shows how to handle the JSON requests with PHP:
$stream = fopen('php://input', 'r');
$json = stream_get_contents($stream);
fclose($stream);
$json = json_decode($json, true);