> ## Documentation Index
> Fetch the complete documentation index at: https://chargecloud.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Sorting

Sorting is a common feature of APIs.
The endpoints will document the supported fields and their order.

## Format

Use the `order_by` query parameter with a prefix-based syntax:

* `+` -> ascending (default)
* `-` -> descending

### Example

```
GET /users?order_by=+name,-created_at
```

***

## Rules

* Multiple fields can be combined.
* If no prefix is provided, ascending order is assumed.
* Unsupported fields are ignored or rejected depending on the API (documented per API).
