API Response FormatΒΆ
All API Responses will have the following format:
{
"status": enum,
"hash": string | null,
"vb_version": string,
"answer": object,
"message": string,
"statuscode": int,
}
status- The result of the API call. One of: [“success”, “failure”, “error”].
hash- The SHA1 of the binary the query was related to. May be null.
vb_version- Current API version.
answer- Contains the body of the reponse.
message- A string providing additional context for the response. Contains the error message when an error occurs.
statuscode- A status code indicating error or success. 0 means success; all others mean error.