Shipping and delivery information for an order. Tracks shipping carrier, tracking number, delivery address, shipment date, estimated delivery, and shipping status.
https://api.mockly.codes/shippings?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/shippingsGet a collection of shippings
/commerce/shippings/shippings/:idGet a single shipping by ID
/commerce/shippings/:id/shippings/metaGet resource metadata and schema
/commerce/shippings/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/shippings?q=laptopGET https://api.mockly.codes/shippings?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 shippings
fetch('https://api.mockly.codes/shippings?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/shippings?count=10'
)
data = response.json()curl "https://api.mockly.codes/shippings?count=10"fetch('https://api.mockly.codes/shippings?nocache=true')idintegerUnique identifier for the shipping record
random_intorder_idintegerForeign key reference to the order being shipped
random_inttracking_numberstringUnique tracking number provided by the shipping carrier for package tracking
uuidcarrierstringShipping carrier or logistics company (e.g., FedEx, UPS, DHL, USPS)
companystatusstringCurrent shipping status (e.g., pending, shipped, in_transit, out_for_delivery, delivered, failed)
statusshipped_datestringDate when the order was shipped and left the warehouse
past_datedateestimated_deliverystringExpected delivery date provided by the shipping carrier
future_datedateaddressstringComplete delivery address where the package is being shipped
addresscountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request