Skip to main content
GET
/
v2
/
tokenized_assets
/
order
/
{order_hash}
Python (SDK)
from compass_api_sdk import CompassAPI


with CompassAPI(
    api_key_auth="<YOUR_API_KEY_HERE>",
) as compass_api:

    res = compass_api.tokenized_assets.tokenized_assets_order_order_hash_(order_hash="<value>")

    # Handle response
    print(res)
{
  "fill_price_usd": "354.92",
  "fill_tx_hash": "0x4076aabd550ad04da515547cb108f0ad4bc84e4e26933771f578d2f41edcd614",
  "filled_amount": "0.007090",
  "order_hash": "0x14459af3a06abf6f7a0d3c2c1fa3b64d2e1b8a7c5e3d2b1f0a9876543210596b",
  "status": "filled",
  "submitted_at": "2026-05-04T11:42:31Z",
  "updated_at": "2026-05-04T11:42:46Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.compasslabs.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Your Compass API Key. Get your key here.

Path Parameters

order_hash
string
required

Response

Successful Response

Returned from GET /order/{hash} — current state of a relayed order.

order_hash
string
required

On-chain order hash.

status
enum<string>
required

Coarse-grained order state. Compass collapses Fusion's finer-grained states (refunded, false-predicate, etc.) into this 4-value enum.

Available options:
pending,
filled,
expired,
cancelled
updated_at
string
required

ISO 8601 UTC timestamp of this status read.

fill_tx_hash
string | null

Tx hash of the most recent resolver fill (populated when filled or partially filled).

fill_price_usd
string | null

Implied USD execution rate per unit of the taker token, derived from filled amounts and the maker-side USD price. For USDC→equity buys this is the USD paid per equity unit. Omitted if maker/taker decimals are unknown.

filled_amount
string | null

Sum of base-unit amounts filled so far. Populated for partial fills while status is still pending, and for fully filled orders.

submitted_at
string | null

ISO 8601 UTC timestamp of order submission.