GET
Auth Required
List Orders
List orders with filtering and pagination.
https://hoodsly-moc-api.wppool.dev/api/v1/order
Query Parameters
| Parameter | Type | Description |
|---|---|---|
per_page | int | Results per page (default: 25) |
page | int | Page number |
status | string | Filter by status (pending, processing, shipped) |
sort_by | string | Sort field (created_at, order_date) |
sort_dir | string | Sort direction (asc, desc) |
start_date | string | Filter from date (YYYY-MM-DD) |
end_date | string | Filter to date (YYYY-MM-DD) |
Response
200 OK
{
"success": true,
"data": [
{
"id": "32136727-3946-43f5-8b5b-04a220c98f74",
"order_id": "WC-12345",
"title": "Order #12345",
"origin": "wordpress",
"order_total": "2800.00",
"order_status": "pending",
"estimated_shipping_date": "2026-01-15",
"vendor": "HoodslyHub",
"order_shop": "Shop A",
"shipping_method": "UPS",
"priority": "No",
"created_at": "2026-01-04T10:00:00Z",
"updated_at": "2026-01-04T10:00:00Z"
}
],
"message": null
}
Request
GET
/api/v1/status
Response