GET Auth Required

List Orders

List orders with filtering and pagination.

https://hoodsly-moc-api.wppool.dev/api/v1/order

Query Parameters

ParameterTypeDescription
per_pageintResults per page (default: 25)
pageintPage number
statusstringFilter by status (pending, processing, shipped)
sort_bystringSort field (created_at, order_date)
sort_dirstringSort direction (asc, desc)
start_datestringFilter from date (YYYY-MM-DD)
end_datestringFilter 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