All endpoints return either a JSON object or array.
All request parameters should be passed in the request body as either a JSON object or array.
All endpoints require passing a valid X-SHA2-Signature header.
Do note that the signature generation method here may not align with the method used for calling
other Binance API endpoints (such as https://fapi.binance.com)
All endpoints should be called from whitelisted IP addresses.
Otherwise, it is expected that you would encounter a HTTP 403 return code.
Signature Generation
KYC Data should be sent in the Request Body in JSON format.
Convert the Request Body JSON to a JSON String
Use the HmacSHA256 algorithm to sign the JSON String, and assign the result to the
X-SHA2-Signature request header.
Sign the exact string you send. Serialize the JSON String compactly, with no extra whitespace,
and send that same string as the request body. Re-serializing or reformatting the JSON after
signing will invalidate the signature.