Errors

A human-readable message is returned to provide more details about the error. Errors can be returned in any of the example formats. We recommend writing code that can gracefully handle all possible API exceptions.

{
    "meta": {
        "message": "Access denied"
    },
    "errors": []
}
{
    "meta": {
        "status": 401,
        "message": "Access denied"
    },
    "errors": []
}
{
    "error": "you cannot access this resource"
}