Returns an array where each element is an object with either an “order” key containing the full order, or an “error” key containing the UID and a description of what went wrong.
The list of up to 128 order uids to fetch
Unique identifier for the order: 56 bytes encoded as hex with 0x
prefix.
Bytes 0..32 are the order digest, bytes 30..52 the owner address and
bytes 52..56 the expiry (validTo) as a uint32 unix epoch timestamp.
The resulting full order data based on the request. Each element of the array is an object of the following format:
{"order": <Order>} for successfully fetched orders{"error": {"uid": "<UID>", "description": "<message>"}} for orders that failed conversion
The result ordering is not guaranteed and might differ from the order of requested UIDs.
Orders that do not exist in the database will be missing from the response.An order as returned by the API. Combines the order creation data, order metadata, and any associated interactions.