# Responses Responses can be of three base types: ### 1. Successful response representing an **Object**: ```json { "success": "true", "some_key": { "...": "..." } } ``` ### 2. Successful response representing an **Array**: ```json { "success": "true", "items": [ { "...": "..." } ] } ``` ### 3. Error response: ```json { "success": "false", "message": "...", "...": "..." } ```