> ## Documentation Index
> Fetch the complete documentation index at: https://docs-en.basswallet.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Response Description

All API responses follow the structure outlined below:

**The top-level response contains four fields**: `code`, `msg`, `timestamp`, and `data`.

**The actual business data is contained within the `data` object.** The example fields in the API response parameters refer to the fields inside `data`.

***

### Response Parameters

| Parameter Name | Data Type | Description                              |
| -------------- | --------- | ---------------------------------------- |
| code           | int       | Response code                            |
| msg            | string    | Error message (if any)                   |
| timestamp      | string    | Timestamp when the request was completed |
| data           | object    | Main body of the API response data       |

***

### Response Example

```json theme={null}
{
    "code": 200,
    "message": "success",
    "timestamp": "1724125848133",
    "data": {
        // per API response data in nested JSON object
    }
}
```
