Skip to main content
GET
Get Store Orders
This endpoint provides comprehensive access to all orders for a specific store with powerful filtering capabilities. Perfect for store management, reporting, and operational oversight.
This endpoint supports advanced filtering and pagination to efficiently handle large volumes of order data while providing flexible search capabilities.

Query Parameters

string
required
The unique identifier of the store whose orders you want to retrieve
string
Filter orders by status (e.g., “pending”, “accepted”, “in_progress”, “completed”, “canceled”)
string
Filter by delivery platform (e.g., “DoorDash”, “UberEats”, “GrubHub”, “LulaDirect”)
string
Start date for filtering orders (ISO 8601 format: YYYY-MM-DDTHH:mm:ssZ)
string
End date for filtering orders (ISO 8601 format: YYYY-MM-DDTHH:mm:ssZ)
integer
default:"1"
Page number for pagination
integer
default:"50"
Number of orders per page (max 100)
string
default:"createdAt"
Field to sort by (“createdAt”, “price”, “status”, “partner”)
string
default:"desc"
Sort direction (“asc” or “desc”)

Response

array
Array of order objects matching the filter criteria
object
Pagination information for the response
object
Summary statistics for the filtered orders

Response Example

Get Today’s Orders
Get Pending Orders from UberEats
Get Last Week’s Completed Orders
Performance Optimization: When querying large date ranges, consider using smaller page sizes (limit parameter) and implement pagination to maintain fast response times.
Time Zones: All timestamps are returned in UTC. Convert to your local timezone as needed for display purposes.
Rate Limiting: This endpoint is subject to rate limiting. For frequent polling, consider using webhooks or the order count endpoint for basic monitoring.

Use Cases

Daily Operations Dashboard
  • Get today’s orders with status filtering
  • Monitor pending orders requiring attention
  • Track fulfillment performance
Financial Reporting
  • Calculate daily/weekly/monthly revenue
  • Analyze order value trends
  • Track performance by delivery platform
Performance Analytics
  • Monitor order completion rates
  • Analyze peak order times
  • Track customer satisfaction metrics
Inventory Planning
  • Review historical order patterns
  • Identify popular items and trends
  • Plan inventory based on demand