Authorization: Type Token
Authorization: Private xXoIjvQ6G8UmUPufZWxN-Kkyd54Js_bY
{
"result": "success",
"data": "ok"
}
{
"result": "error",
"error": {
"code": "HeaderMissingError",
"message": "The 'Authorization' header was not present."
}
}
&jwt=1 query parameter to indicate that the response should be a signed JSON web token. When set, you will always receive a successful response where the data field is the JWT string (unless a pre-endpoint error is encountered, like auth or rate limiting). The JWT will then contain the API response as if the request was not called with JWT signing. For instance, if you made a request to an unknown endpoint, the outer response containing the JWT will be successful. However, when you decode the JWT, the inner response will be an error (with result="error" and its relevant message).-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECRQAAg0y44Vp+QvbxHRQlD+Poam7
eD/SteU/tf9MAlz94CnGz6nKExB0WaQI8ixKmCsIq0+yOCWJTk9ei5pX1g==
-----END PUBLIC KEY-----
