fakestore_get_carts
Retrieve shopping carts from the Fake Store API with options to limit results and sort by date for e-commerce testing and data management.
Instructions
Get all carts from the store. Optionally limit results and sort.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Limit the number of carts returned | |
sort | No | Sort carts (asc or desc) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Limit the number of carts returned",
"type": "number"
},
"sort": {
"description": "Sort carts (asc or desc)",
"enum": [
"asc",
"desc"
],
"type": "string"
}
},
"type": "object"
}