Orders
View your buy and sell orders
Query Orders
Order queries require JWT authentication. Use the SDK to view your orders programmatically.
from pactum import MarketplaceClient
client = MarketplaceClient(
marketplace_url="https://pactum.cc",
private_key="0x...",
)
# Authenticate (EIP-712 challenge-response)
client.authenticate()
# Get order by ID
order = client.get_order("order-uuid-here")
print(order["status"]) # pending, paid, completed, etc.