There was no language given, so I assume you mean a cURL command. First you must receive a nonce from get_nonce. Note that %20 is the character encoding of a space (‘ ‘)
curl -X POST -d "nonce=my_nonce_from_get_nonce&title=my%20post&content=blah" http://example.com/blog/?json=create_post --header "Content-Type:application/json"
See here for more parameters: https://ww.wp.xz.cn/plugins/json-api/other_notes/#2.2.-Pages-controller-methods
Thank you @markyc. Could you tell me how to send AJAX POST request with JSON data to this json API controller. I have created custom controller.