> For the complete documentation index, see [llms.txt](https://developers.socialboards.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.socialboards.com/docs/apis/tickets/reference/api-request-result.md).

# API Request Result

All responses will contain the following common properties, but the contents and structure of each responses varies depending on the endpoint, you used.

Example:

```json
{
	"errorCode": -1,
	"errorText": null,
	"data": {}
}
```

| Field     | Type    | Comments                                                                                                             |
| --------- | ------- | -------------------------------------------------------------------------------------------------------------------- |
| data      | object  | Contains the result of the request execution. It may be null if no data is returned for this request                 |
| errorCode | integer | The error code generated during the execution of the request. If the request was successful, the value will be `-1`  |
| errorText | string  | The error message generated during the execution of the request. If request was successful, the value will be `null` |
