You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
## [2.44.4] - 2026-05-24
6
+
7
+
### Fixed
8
+
9
+
-**Docs publishing**: Preserve `Cross Exchange` directly after `Events & Markets` during release-time Mintlify regeneration instead of appending hosted groups near the bottom.
Returns connected clusters of semantically matched events across venues. Use this endpoint to browse or anchor event-level matches while preserving each venue's child markets.
3079
+
3080
+
| Parameter | Type | Required | Description |
3081
+
| --- | --- | --- | --- |
3082
+
| `eventId` | string | No | Anchor the response to a specific event ID. |
3083
+
| `slug` | string | No | Anchor the response to a specific event slug. |
3084
+
| `url` | string | No | Anchor the response to a specific event URL. |
3085
+
| `query` | string | No | Text search across cluster titles. |
3086
+
| `category` | string | No | Filter both sides of matched edges by event category. |
3087
+
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
3088
+
| `relation` | string | No | Single relation filter. Alias for relations. |
Returns connected clusters of semantically matched markets across venues. Use this endpoint to browse or anchor market-level matches without flattening the response into pairwise rows.
3153
+
3154
+
| Parameter | Type | Required | Description |
3155
+
| --- | --- | --- | --- |
3156
+
| `marketId` | string | No | Anchor the response to a specific market ID. |
3157
+
| `slug` | string | No | Anchor the response to a specific market slug. |
3158
+
| `url` | string | No | Anchor the response to a specific market URL. |
3159
+
| `query` | string | No | Text search across cluster titles. |
3160
+
| `category` | string | No | Filter both sides of matched edges by market category. |
3161
+
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
3162
+
| `relation` | string | No | Single relation filter. Alias for relations. |
@@ -5024,157 +5175,6 @@ const result = await exchange.feedFetchHistoricalPrices({
5024
5175
5025
5176
5026
5177
5027
-
## Cross Exchange
5028
-
5029
-
### Fetch matched event clusters
5030
-
5031
-
`GET /v0/matched-event-clusters`
5032
-
5033
-
Returns connected clusters of semantically matched events across venues. Use this endpoint to browse or anchor event-level matches while preserving each venue's child markets.
5034
-
5035
-
| Parameter | Type | Required | Description |
5036
-
| --- | --- | --- | --- |
5037
-
| `eventId` | string | No | Anchor the response to a specific event ID. |
5038
-
| `slug` | string | No | Anchor the response to a specific event slug. |
5039
-
| `url` | string | No | Anchor the response to a specific event URL. |
5040
-
| `query` | string | No | Text search across cluster titles. |
5041
-
| `category` | string | No | Filter both sides of matched edges by event category. |
5042
-
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
5043
-
| `relation` | string | No | Single relation filter. Alias for relations. |
Returns connected clusters of semantically matched markets across venues. Use this endpoint to browse or anchor market-level matches without flattening the response into pairwise rows.
5108
-
5109
-
| Parameter | Type | Required | Description |
5110
-
| --- | --- | --- | --- |
5111
-
| `marketId` | string | No | Anchor the response to a specific market ID. |
5112
-
| `slug` | string | No | Anchor the response to a specific market slug. |
5113
-
| `url` | string | No | Anchor the response to a specific market URL. |
5114
-
| `query` | string | No | Text search across cluster titles. |
5115
-
| `category` | string | No | Filter both sides of matched edges by market category. |
5116
-
| `relations` | string | No | Comma-separated relation filter. Valid values: identity (same resolution), subset (A yes implies B yes), superset (B yes implies A yes), overlap (some shared scenarios), and disjoint (mutually exclusive). Defaults to identity. For subset and superset, direction follows the pairwise edge direction returned in rawMatches when includeRawMatches=true. |
5117
-
| `relation` | string | No | Single relation filter. Alias for relations. |
- [Fetch Markets Paginated](https://pmxt.dev/docs/api-reference/fetchMarketsPaginated): Fetch markets with cursor-based pagination backed by a stable in-memory snapshot. On the first call (or when no cursor is supplied), fetches all markets once and caches them. Subsequent calls with a cursor returned from a previous call slice directly from the cached snapshot — no additional API calls are made. The snapshot is invalidated after `snapshotTTL` ms (configured via `ExchangeOptions` in the constructor). A request using a cursor from an expired snapshot throws `'Cursor has expired'`.
- [Fetch matched event clusters](https://pmxt.dev/docs/api-reference/getV0Matched-event-clusters): Returns connected clusters of semantically matched events across venues. Use this endpoint to browse or anchor event-level matches while preserving each venue's child markets.
40
+
- [Fetch matched market clusters](https://pmxt.dev/docs/api-reference/getV0Matched-market-clusters): Returns connected clusters of semantically matched markets across venues. Use this endpoint to browse or anchor market-level matches without flattening the response into pairwise rows.
- [Fetch Order Book](https://pmxt.dev/docs/api-reference/fetch-order-book)
41
43
- [Fetch Order Books](https://pmxt.dev/docs/api-reference/fetchOrderBooks): Batch variant of {@link fetchOrderBook}. Fetches order books for multiple outcomes in a single request where the exchange supports it.
- [Fetch Oracle Round](https://pmxt.dev/docs/api-reference/feedFetchOracleRound): Returns the latest Chainlink oracle round for a price feed.
69
71
- [Fetch Oracle History](https://pmxt.dev/docs/api-reference/feedFetchOracleHistory): Returns historical Chainlink oracle rounds for a price feed.
70
72
- [Fetch Historical Prices](https://pmxt.dev/docs/api-reference/feedFetchHistoricalPrices): Returns historical price data as tickers within a time range.
71
-
- [Fetch matched event clusters](https://pmxt.dev/docs/api-reference/getV0Matched-event-clusters): Returns connected clusters of semantically matched events across venues. Use this endpoint to browse or anchor event-level matches while preserving each venue's child markets.
72
-
- [Fetch matched market clusters](https://pmxt.dev/docs/api-reference/getV0Matched-market-clusters): Returns connected clusters of semantically matched markets across venues. Use this endpoint to browse or anchor market-level matches without flattening the response into pairwise rows.
73
73
- [SQL](https://pmxt.dev/docs/sql): Query raw tick-level orderbook history with SQL.
74
74
- [Execute a read-only SQL query against ClickHouse](https://pmxt.dev/docs/api-reference/postV0Sql)
0 commit comments