pmxtjs 2.45.1 → 2.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/generated/src/apis/DefaultApi.d.ts +34 -0
- package/dist/esm/generated/src/apis/DefaultApi.js +34 -0
- package/dist/esm/generated/src/models/ArbitrageOpportunity.d.ts +1 -0
- package/dist/esm/generated/src/models/ArbitrageOpportunity.js +1 -0
- package/dist/esm/generated/src/models/FetchArbitrageParams.d.ts +1 -0
- package/dist/esm/generated/src/models/FetchArbitrageParams.js +1 -0
- package/dist/esm/generated/src/models/FetchEventMatchesParams.d.ts +1 -0
- package/dist/esm/generated/src/models/FetchEventMatchesParams.js +1 -0
- package/dist/esm/generated/src/models/FetchMarketMatchesParams.d.ts +1 -0
- package/dist/esm/generated/src/models/FetchMarketMatchesParams.js +1 -0
- package/dist/esm/generated/src/models/FetchMatchedMarketsParams.d.ts +1 -0
- package/dist/esm/generated/src/models/FetchMatchedMarketsParams.js +1 -0
- package/dist/esm/generated/src/models/MatchResult.d.ts +1 -0
- package/dist/esm/generated/src/models/MatchResult.js +1 -0
- package/dist/esm/generated/src/models/MatchedMarketPair.d.ts +1 -0
- package/dist/esm/generated/src/models/MatchedMarketPair.js +1 -0
- package/dist/esm/generated/src/models/PriceComparison.d.ts +1 -0
- package/dist/esm/generated/src/models/PriceComparison.js +1 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/pmxt/models.d.ts +1 -1
- package/dist/generated/src/apis/DefaultApi.d.ts +34 -0
- package/dist/generated/src/apis/DefaultApi.js +34 -0
- package/dist/generated/src/models/ArbitrageOpportunity.d.ts +1 -0
- package/dist/generated/src/models/ArbitrageOpportunity.js +1 -0
- package/dist/generated/src/models/FetchArbitrageParams.d.ts +1 -0
- package/dist/generated/src/models/FetchArbitrageParams.js +1 -0
- package/dist/generated/src/models/FetchEventMatchesParams.d.ts +1 -0
- package/dist/generated/src/models/FetchEventMatchesParams.js +1 -0
- package/dist/generated/src/models/FetchMarketMatchesParams.d.ts +1 -0
- package/dist/generated/src/models/FetchMarketMatchesParams.js +1 -0
- package/dist/generated/src/models/FetchMatchedMarketsParams.d.ts +1 -0
- package/dist/generated/src/models/FetchMatchedMarketsParams.js +1 -0
- package/dist/generated/src/models/MatchResult.d.ts +1 -0
- package/dist/generated/src/models/MatchResult.js +1 -0
- package/dist/generated/src/models/MatchedMarketPair.d.ts +1 -0
- package/dist/generated/src/models/MatchedMarketPair.js +1 -0
- package/dist/generated/src/models/PriceComparison.d.ts +1 -0
- package/dist/generated/src/models/PriceComparison.js +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -0
- package/dist/pmxt/models.d.ts +1 -1
- package/generated/docs/DefaultApi.md +68 -68
- package/generated/package.json +1 -1
- package/generated/src/apis/DefaultApi.ts +34 -0
- package/generated/src/models/ArbitrageOpportunity.ts +1 -0
- package/generated/src/models/FetchArbitrageParams.ts +1 -0
- package/generated/src/models/FetchEventMatchesParams.ts +1 -0
- package/generated/src/models/FetchMarketMatchesParams.ts +1 -0
- package/generated/src/models/FetchMatchedMarketsParams.ts +1 -0
- package/generated/src/models/MatchResult.ts +1 -0
- package/generated/src/models/MatchedMarketPair.ts +1 -0
- package/generated/src/models/PriceComparison.ts +1 -0
- package/index.ts +2 -1
- package/package.json +2 -2
- package/pmxt/models.ts +1 -1
|
@@ -65,7 +65,7 @@ async function example() {
|
|
|
65
65
|
const api = new DefaultApi();
|
|
66
66
|
|
|
67
67
|
const body = {
|
|
68
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
68
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
69
69
|
exchange: exchange_example,
|
|
70
70
|
// BuildOrderRequest (optional)
|
|
71
71
|
buildOrderRequest: ...,
|
|
@@ -88,7 +88,7 @@ example().catch(console.error);
|
|
|
88
88
|
|
|
89
89
|
| Name | Type | Description | Notes |
|
|
90
90
|
|------------- | ------------- | ------------- | -------------|
|
|
91
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
91
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
92
92
|
| **buildOrderRequest** | [BuildOrderRequest](BuildOrderRequest.md) | | [Optional] |
|
|
93
93
|
|
|
94
94
|
### Return type
|
|
@@ -135,7 +135,7 @@ async function example() {
|
|
|
135
135
|
const api = new DefaultApi();
|
|
136
136
|
|
|
137
137
|
const body = {
|
|
138
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
138
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
139
139
|
exchange: exchange_example,
|
|
140
140
|
// CancelOrderRequest (optional)
|
|
141
141
|
cancelOrderRequest: ...,
|
|
@@ -158,7 +158,7 @@ example().catch(console.error);
|
|
|
158
158
|
|
|
159
159
|
| Name | Type | Description | Notes |
|
|
160
160
|
|------------- | ------------- | ------------- | -------------|
|
|
161
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
161
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
162
162
|
| **cancelOrderRequest** | [CancelOrderRequest](CancelOrderRequest.md) | | [Optional] |
|
|
163
163
|
|
|
164
164
|
### Return type
|
|
@@ -205,7 +205,7 @@ async function example() {
|
|
|
205
205
|
const api = new DefaultApi();
|
|
206
206
|
|
|
207
207
|
const body = {
|
|
208
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
208
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
209
209
|
exchange: exchange_example,
|
|
210
210
|
// CloseRequest (optional)
|
|
211
211
|
closeRequest: ...,
|
|
@@ -228,7 +228,7 @@ example().catch(console.error);
|
|
|
228
228
|
|
|
229
229
|
| Name | Type | Description | Notes |
|
|
230
230
|
|------------- | ------------- | ------------- | -------------|
|
|
231
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
231
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
232
232
|
| **closeRequest** | [CloseRequest](CloseRequest.md) | | [Optional] |
|
|
233
233
|
|
|
234
234
|
### Return type
|
|
@@ -345,7 +345,7 @@ async function example() {
|
|
|
345
345
|
const api = new DefaultApi();
|
|
346
346
|
|
|
347
347
|
const body = {
|
|
348
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
348
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
349
349
|
exchange: exchange_example,
|
|
350
350
|
// CreateOrderRequest (optional)
|
|
351
351
|
createOrderRequest: ...,
|
|
@@ -368,7 +368,7 @@ example().catch(console.error);
|
|
|
368
368
|
|
|
369
369
|
| Name | Type | Description | Notes |
|
|
370
370
|
|------------- | ------------- | ------------- | -------------|
|
|
371
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
371
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
372
372
|
| **createOrderRequest** | [CreateOrderRequest](CreateOrderRequest.md) | | [Optional] |
|
|
373
373
|
|
|
374
374
|
### Return type
|
|
@@ -413,7 +413,7 @@ async function example() {
|
|
|
413
413
|
const api = new DefaultApi();
|
|
414
414
|
|
|
415
415
|
const body = {
|
|
416
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
416
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
417
417
|
exchange: exchange_example,
|
|
418
418
|
// string | required for Limitless (slug) (optional)
|
|
419
419
|
marketId: marketId_example,
|
|
@@ -444,7 +444,7 @@ example().catch(console.error);
|
|
|
444
444
|
|
|
445
445
|
| Name | Type | Description | Notes |
|
|
446
446
|
|------------- | ------------- | ------------- | -------------|
|
|
447
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
447
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
448
448
|
| **marketId** | `string` | required for Limitless (slug) | [Optional] [Defaults to `undefined`] |
|
|
449
449
|
| **since** | `Date` | Only return records after this date | [Optional] [Defaults to `undefined`] |
|
|
450
450
|
| **until** | `Date` | Only return records before this date | [Optional] [Defaults to `undefined`] |
|
|
@@ -501,7 +501,7 @@ async function example() {
|
|
|
501
501
|
category: category_example,
|
|
502
502
|
// number (optional)
|
|
503
503
|
limit: 8.14,
|
|
504
|
-
// Array<'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint'> | Comma-separated relation types to include (default: \'identity\'). (optional)
|
|
504
|
+
// Array<'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint'> | Comma-separated relation types to include (default: \'identity\'). (optional)
|
|
505
505
|
relations: ...,
|
|
506
506
|
} satisfies FetchArbitrageRequest;
|
|
507
507
|
|
|
@@ -526,7 +526,7 @@ example().catch(console.error);
|
|
|
526
526
|
| **minSpread** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
527
527
|
| **category** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
528
528
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
529
|
-
| **relations** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | Comma-separated relation types to include (default: \'identity\'). | [Optional] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
529
|
+
| **relations** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | Comma-separated relation types to include (default: \'identity\'). | [Optional] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
530
530
|
|
|
531
531
|
### Return type
|
|
532
532
|
|
|
@@ -572,7 +572,7 @@ async function example() {
|
|
|
572
572
|
const api = new DefaultApi();
|
|
573
573
|
|
|
574
574
|
const body = {
|
|
575
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
575
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
576
576
|
exchange: exchange_example,
|
|
577
577
|
// string (optional)
|
|
578
578
|
address: address_example,
|
|
@@ -595,7 +595,7 @@ example().catch(console.error);
|
|
|
595
595
|
|
|
596
596
|
| Name | Type | Description | Notes |
|
|
597
597
|
|------------- | ------------- | ------------- | -------------|
|
|
598
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
598
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
599
599
|
| **address** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
600
600
|
|
|
601
601
|
### Return type
|
|
@@ -640,7 +640,7 @@ async function example() {
|
|
|
640
640
|
const api = new DefaultApi();
|
|
641
641
|
|
|
642
642
|
const body = {
|
|
643
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
643
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
644
644
|
exchange: exchange_example,
|
|
645
645
|
// string | required for Limitless (slug) (optional)
|
|
646
646
|
marketId: marketId_example,
|
|
@@ -671,7 +671,7 @@ example().catch(console.error);
|
|
|
671
671
|
|
|
672
672
|
| Name | Type | Description | Notes |
|
|
673
673
|
|------------- | ------------- | ------------- | -------------|
|
|
674
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
674
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
675
675
|
| **marketId** | `string` | required for Limitless (slug) | [Optional] [Defaults to `undefined`] |
|
|
676
676
|
| **since** | `Date` | Only return records after this date | [Optional] [Defaults to `undefined`] |
|
|
677
677
|
| **until** | `Date` | Only return records before this date | [Optional] [Defaults to `undefined`] |
|
|
@@ -722,7 +722,7 @@ async function example() {
|
|
|
722
722
|
const api = new DefaultApi();
|
|
723
723
|
|
|
724
724
|
const body = {
|
|
725
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
725
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
726
726
|
exchange: exchange_example,
|
|
727
727
|
// string | For keyword search (optional)
|
|
728
728
|
query: query_example,
|
|
@@ -767,7 +767,7 @@ example().catch(console.error);
|
|
|
767
767
|
|
|
768
768
|
| Name | Type | Description | Notes |
|
|
769
769
|
|------------- | ------------- | ------------- | -------------|
|
|
770
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
770
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
771
771
|
| **query** | `string` | For keyword search | [Optional] [Defaults to `undefined`] |
|
|
772
772
|
| **limit** | `number` | Maximum number of results to return | [Optional] [Defaults to `undefined`] |
|
|
773
773
|
| **cursor** | `string` | Opaque venue pagination cursor, where supported. | [Optional] [Defaults to `undefined`] |
|
|
@@ -837,7 +837,7 @@ async function example() {
|
|
|
837
837
|
eventId: eventId_example,
|
|
838
838
|
// string (optional)
|
|
839
839
|
slug: slug_example,
|
|
840
|
-
// 'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
840
|
+
// 'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
841
841
|
relation: relation_example,
|
|
842
842
|
// number (optional)
|
|
843
843
|
minConfidence: 8.14,
|
|
@@ -870,7 +870,7 @@ example().catch(console.error);
|
|
|
870
870
|
| **event** | [](.md) | Pass a UnifiedEvent directly instead of eventId/slug. | [Optional] [Defaults to `undefined`] |
|
|
871
871
|
| **eventId** | `string` | Lookup a specific event by ID. Omit for browse mode. | [Optional] [Defaults to `undefined`] |
|
|
872
872
|
| **slug** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
873
|
-
| **relation** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
873
|
+
| **relation** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
874
874
|
| **minConfidence** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
875
875
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
876
876
|
| **includePrices** | `boolean` | | [Optional] [Defaults to `undefined`] |
|
|
@@ -919,7 +919,7 @@ async function example() {
|
|
|
919
919
|
const api = new DefaultApi();
|
|
920
920
|
|
|
921
921
|
const body = {
|
|
922
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
922
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
923
923
|
exchange: exchange_example,
|
|
924
924
|
// string | For keyword search (optional)
|
|
925
925
|
query: query_example,
|
|
@@ -964,7 +964,7 @@ example().catch(console.error);
|
|
|
964
964
|
|
|
965
965
|
| Name | Type | Description | Notes |
|
|
966
966
|
|------------- | ------------- | ------------- | -------------|
|
|
967
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
967
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
968
968
|
| **query** | `string` | For keyword search | [Optional] [Defaults to `undefined`] |
|
|
969
969
|
| **limit** | `number` | Maximum number of results to return | [Optional] [Defaults to `undefined`] |
|
|
970
970
|
| **cursor** | `string` | Opaque venue pagination cursor, where supported. | [Optional] [Defaults to `undefined`] |
|
|
@@ -1022,7 +1022,7 @@ async function example() {
|
|
|
1022
1022
|
const api = new DefaultApi();
|
|
1023
1023
|
|
|
1024
1024
|
const body = {
|
|
1025
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1025
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1026
1026
|
exchange: exchange_example,
|
|
1027
1027
|
// number (optional)
|
|
1028
1028
|
limit: 8.14,
|
|
@@ -1049,7 +1049,7 @@ example().catch(console.error);
|
|
|
1049
1049
|
|
|
1050
1050
|
| Name | Type | Description | Notes |
|
|
1051
1051
|
|------------- | ------------- | ------------- | -------------|
|
|
1052
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1052
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1053
1053
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1054
1054
|
| **cursor** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1055
1055
|
| **filter** | [](.md) | | [Optional] [Defaults to `undefined`] |
|
|
@@ -1110,7 +1110,7 @@ async function example() {
|
|
|
1110
1110
|
slug: slug_example,
|
|
1111
1111
|
// string (optional)
|
|
1112
1112
|
url: url_example,
|
|
1113
|
-
// 'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
1113
|
+
// 'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
1114
1114
|
relation: relation_example,
|
|
1115
1115
|
// number (optional)
|
|
1116
1116
|
minConfidence: 8.14,
|
|
@@ -1148,7 +1148,7 @@ example().catch(console.error);
|
|
|
1148
1148
|
| **marketId** | `string` | Lookup a specific market by ID. Omit for browse mode. | [Optional] [Defaults to `undefined`] |
|
|
1149
1149
|
| **slug** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1150
1150
|
| **url** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1151
|
-
| **relation** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
1151
|
+
| **relation** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
1152
1152
|
| **minConfidence** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1153
1153
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1154
1154
|
| **includePrices** | `boolean` | | [Optional] [Defaults to `undefined`] |
|
|
@@ -1199,7 +1199,7 @@ async function example() {
|
|
|
1199
1199
|
const api = new DefaultApi();
|
|
1200
1200
|
|
|
1201
1201
|
const body = {
|
|
1202
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1202
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1203
1203
|
exchange: exchange_example,
|
|
1204
1204
|
// number | Maximum number of results to return (optional)
|
|
1205
1205
|
limit: 8.14,
|
|
@@ -1244,7 +1244,7 @@ example().catch(console.error);
|
|
|
1244
1244
|
|
|
1245
1245
|
| Name | Type | Description | Notes |
|
|
1246
1246
|
|------------- | ------------- | ------------- | -------------|
|
|
1247
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1247
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1248
1248
|
| **limit** | `number` | Maximum number of results to return | [Optional] [Defaults to `undefined`] |
|
|
1249
1249
|
| **offset** | `number` | Pagination offset — number of results to skip | [Optional] [Defaults to `undefined`] |
|
|
1250
1250
|
| **sort** | `volume`, `liquidity`, `newest` | Sort order for results | [Optional] [Defaults to `undefined`] [Enum: volume, liquidity, newest] |
|
|
@@ -1316,7 +1316,7 @@ async function example() {
|
|
|
1316
1316
|
slug: slug_example,
|
|
1317
1317
|
// string (optional)
|
|
1318
1318
|
url: url_example,
|
|
1319
|
-
// 'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
1319
|
+
// 'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
1320
1320
|
relation: relation_example,
|
|
1321
1321
|
// number (optional)
|
|
1322
1322
|
minConfidence: 8.14,
|
|
@@ -1354,7 +1354,7 @@ example().catch(console.error);
|
|
|
1354
1354
|
| **marketId** | `string` | Lookup a specific market by ID. Omit for browse mode. | [Optional] [Defaults to `undefined`] |
|
|
1355
1355
|
| **slug** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1356
1356
|
| **url** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1357
|
-
| **relation** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
1357
|
+
| **relation** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
1358
1358
|
| **minConfidence** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1359
1359
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1360
1360
|
| **includePrices** | `boolean` | | [Optional] [Defaults to `undefined`] |
|
|
@@ -1405,7 +1405,7 @@ async function example() {
|
|
|
1405
1405
|
const api = new DefaultApi();
|
|
1406
1406
|
|
|
1407
1407
|
const body = {
|
|
1408
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1408
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1409
1409
|
exchange: exchange_example,
|
|
1410
1410
|
// number | Maximum number of results to return (optional)
|
|
1411
1411
|
limit: 8.14,
|
|
@@ -1450,7 +1450,7 @@ example().catch(console.error);
|
|
|
1450
1450
|
|
|
1451
1451
|
| Name | Type | Description | Notes |
|
|
1452
1452
|
|------------- | ------------- | ------------- | -------------|
|
|
1453
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1453
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1454
1454
|
| **limit** | `number` | Maximum number of results to return | [Optional] [Defaults to `undefined`] |
|
|
1455
1455
|
| **offset** | `number` | Pagination offset — number of results to skip | [Optional] [Defaults to `undefined`] |
|
|
1456
1456
|
| **sort** | `volume`, `liquidity`, `newest` | Sort order for results | [Optional] [Defaults to `undefined`] [Enum: volume, liquidity, newest] |
|
|
@@ -1508,7 +1508,7 @@ async function example() {
|
|
|
1508
1508
|
const api = new DefaultApi();
|
|
1509
1509
|
|
|
1510
1510
|
const body = {
|
|
1511
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1511
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1512
1512
|
exchange: exchange_example,
|
|
1513
1513
|
// number (optional)
|
|
1514
1514
|
limit: 8.14,
|
|
@@ -1535,7 +1535,7 @@ example().catch(console.error);
|
|
|
1535
1535
|
|
|
1536
1536
|
| Name | Type | Description | Notes |
|
|
1537
1537
|
|------------- | ------------- | ------------- | -------------|
|
|
1538
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1538
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1539
1539
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1540
1540
|
| **cursor** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1541
1541
|
| **filter** | [](.md) | | [Optional] [Defaults to `undefined`] |
|
|
@@ -1590,7 +1590,7 @@ async function example() {
|
|
|
1590
1590
|
category: category_example,
|
|
1591
1591
|
// number (optional)
|
|
1592
1592
|
limit: 8.14,
|
|
1593
|
-
// Array<'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint'> | Comma-separated relation types to include (default: \'identity\'). (optional)
|
|
1593
|
+
// Array<'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint'> | Comma-separated relation types to include (default: \'identity\'). (optional)
|
|
1594
1594
|
relations: ...,
|
|
1595
1595
|
} satisfies FetchMatchedMarketsRequest;
|
|
1596
1596
|
|
|
@@ -1615,7 +1615,7 @@ example().catch(console.error);
|
|
|
1615
1615
|
| **minDifference** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1616
1616
|
| **category** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1617
1617
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1618
|
-
| **relations** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | Comma-separated relation types to include (default: \'identity\'). | [Optional] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
1618
|
+
| **relations** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | Comma-separated relation types to include (default: \'identity\'). | [Optional] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
1619
1619
|
|
|
1620
1620
|
### Return type
|
|
1621
1621
|
|
|
@@ -1667,7 +1667,7 @@ async function example() {
|
|
|
1667
1667
|
category: category_example,
|
|
1668
1668
|
// number (optional)
|
|
1669
1669
|
limit: 8.14,
|
|
1670
|
-
// Array<'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint'> | Comma-separated relation types to include (default: \'identity\'). (optional)
|
|
1670
|
+
// Array<'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint'> | Comma-separated relation types to include (default: \'identity\'). (optional)
|
|
1671
1671
|
relations: ...,
|
|
1672
1672
|
} satisfies FetchMatchedPricesRequest;
|
|
1673
1673
|
|
|
@@ -1692,7 +1692,7 @@ example().catch(console.error);
|
|
|
1692
1692
|
| **minDifference** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1693
1693
|
| **category** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1694
1694
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
1695
|
-
| **relations** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | Comma-separated relation types to include (default: \'identity\'). | [Optional] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
1695
|
+
| **relations** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | Comma-separated relation types to include (default: \'identity\'). | [Optional] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
1696
1696
|
|
|
1697
1697
|
### Return type
|
|
1698
1698
|
|
|
@@ -1736,7 +1736,7 @@ async function example() {
|
|
|
1736
1736
|
const api = new DefaultApi();
|
|
1737
1737
|
|
|
1738
1738
|
const body = {
|
|
1739
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1739
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1740
1740
|
exchange: exchange_example,
|
|
1741
1741
|
// string | filter to specific outcome/ticker (optional)
|
|
1742
1742
|
outcomeId: outcomeId_example,
|
|
@@ -1769,7 +1769,7 @@ example().catch(console.error);
|
|
|
1769
1769
|
|
|
1770
1770
|
| Name | Type | Description | Notes |
|
|
1771
1771
|
|------------- | ------------- | ------------- | -------------|
|
|
1772
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1772
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1773
1773
|
| **outcomeId** | `string` | filter to specific outcome/ticker | [Optional] [Defaults to `undefined`] |
|
|
1774
1774
|
| **marketId** | `string` | filter to specific market | [Optional] [Defaults to `undefined`] |
|
|
1775
1775
|
| **since** | `Date` | Only return records after this date | [Optional] [Defaults to `undefined`] |
|
|
@@ -1821,7 +1821,7 @@ async function example() {
|
|
|
1821
1821
|
const api = new DefaultApi();
|
|
1822
1822
|
|
|
1823
1823
|
const body = {
|
|
1824
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1824
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1825
1825
|
exchange: exchange_example,
|
|
1826
1826
|
// string
|
|
1827
1827
|
outcomeId: outcomeId_example,
|
|
@@ -1852,7 +1852,7 @@ example().catch(console.error);
|
|
|
1852
1852
|
|
|
1853
1853
|
| Name | Type | Description | Notes |
|
|
1854
1854
|
|------------- | ------------- | ------------- | -------------|
|
|
1855
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1855
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1856
1856
|
| **outcomeId** | `string` | | [Defaults to `undefined`] |
|
|
1857
1857
|
| **resolution** | `string` | Required for candle aggregation | [Optional] [Defaults to `undefined`] |
|
|
1858
1858
|
| **start** | `Date` | Start of the time range | [Optional] [Defaults to `undefined`] |
|
|
@@ -1903,7 +1903,7 @@ async function example() {
|
|
|
1903
1903
|
const api = new DefaultApi();
|
|
1904
1904
|
|
|
1905
1905
|
const body = {
|
|
1906
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1906
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1907
1907
|
exchange: exchange_example,
|
|
1908
1908
|
// string (optional)
|
|
1909
1909
|
marketId: marketId_example,
|
|
@@ -1926,7 +1926,7 @@ example().catch(console.error);
|
|
|
1926
1926
|
|
|
1927
1927
|
| Name | Type | Description | Notes |
|
|
1928
1928
|
|------------- | ------------- | ------------- | -------------|
|
|
1929
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1929
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
1930
1930
|
| **marketId** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
1931
1931
|
|
|
1932
1932
|
### Return type
|
|
@@ -1973,7 +1973,7 @@ async function example() {
|
|
|
1973
1973
|
const api = new DefaultApi();
|
|
1974
1974
|
|
|
1975
1975
|
const body = {
|
|
1976
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1976
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
1977
1977
|
exchange: exchange_example,
|
|
1978
1978
|
// string
|
|
1979
1979
|
orderId: orderId_example,
|
|
@@ -1996,7 +1996,7 @@ example().catch(console.error);
|
|
|
1996
1996
|
|
|
1997
1997
|
| Name | Type | Description | Notes |
|
|
1998
1998
|
|------------- | ------------- | ------------- | -------------|
|
|
1999
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
1999
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2000
2000
|
| **orderId** | `string` | | [Defaults to `undefined`] |
|
|
2001
2001
|
|
|
2002
2002
|
### Return type
|
|
@@ -2043,7 +2043,7 @@ async function example() {
|
|
|
2043
2043
|
const api = new DefaultApi();
|
|
2044
2044
|
|
|
2045
2045
|
const body = {
|
|
2046
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2046
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2047
2047
|
exchange: exchange_example,
|
|
2048
2048
|
// string
|
|
2049
2049
|
outcomeId: outcomeId_example,
|
|
@@ -2076,7 +2076,7 @@ example().catch(console.error);
|
|
|
2076
2076
|
|
|
2077
2077
|
| Name | Type | Description | Notes |
|
|
2078
2078
|
|------------- | ------------- | ------------- | -------------|
|
|
2079
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2079
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2080
2080
|
| **outcomeId** | `string` | | [Defaults to `undefined`] |
|
|
2081
2081
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
2082
2082
|
| **side** | `yes`, `no` | Outcome side: \'yes\' or \'no\'. Required for exchanges like Limitless where the API returns a single orderbook per market. | [Optional] [Defaults to `undefined`] [Enum: yes, no] |
|
|
@@ -2128,7 +2128,7 @@ async function example() {
|
|
|
2128
2128
|
const api = new DefaultApi();
|
|
2129
2129
|
|
|
2130
2130
|
const body = {
|
|
2131
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2131
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2132
2132
|
exchange: exchange_example,
|
|
2133
2133
|
// FetchOrderBooksRequest (optional)
|
|
2134
2134
|
fetchOrderBooksRequest: ...,
|
|
@@ -2151,7 +2151,7 @@ example().catch(console.error);
|
|
|
2151
2151
|
|
|
2152
2152
|
| Name | Type | Description | Notes |
|
|
2153
2153
|
|------------- | ------------- | ------------- | -------------|
|
|
2154
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2154
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2155
2155
|
| **fetchOrderBooksRequest** | [FetchOrderBooksRequest](FetchOrderBooksRequest.md) | | [Optional] |
|
|
2156
2156
|
|
|
2157
2157
|
### Return type
|
|
@@ -2198,7 +2198,7 @@ async function example() {
|
|
|
2198
2198
|
const api = new DefaultApi();
|
|
2199
2199
|
|
|
2200
2200
|
const body = {
|
|
2201
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2201
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2202
2202
|
exchange: exchange_example,
|
|
2203
2203
|
// string (optional)
|
|
2204
2204
|
address: address_example,
|
|
@@ -2221,7 +2221,7 @@ example().catch(console.error);
|
|
|
2221
2221
|
|
|
2222
2222
|
| Name | Type | Description | Notes |
|
|
2223
2223
|
|------------- | ------------- | ------------- | -------------|
|
|
2224
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2224
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2225
2225
|
| **address** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
2226
2226
|
|
|
2227
2227
|
### Return type
|
|
@@ -2282,7 +2282,7 @@ async function example() {
|
|
|
2282
2282
|
slug: slug_example,
|
|
2283
2283
|
// string (optional)
|
|
2284
2284
|
url: url_example,
|
|
2285
|
-
// 'identity' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
2285
|
+
// 'identity' | 'complement' | 'subset' | 'superset' | 'overlap' | 'disjoint' (optional)
|
|
2286
2286
|
relation: relation_example,
|
|
2287
2287
|
// number (optional)
|
|
2288
2288
|
minConfidence: 8.14,
|
|
@@ -2320,7 +2320,7 @@ example().catch(console.error);
|
|
|
2320
2320
|
| **marketId** | `string` | Lookup a specific market by ID. Omit for browse mode. | [Optional] [Defaults to `undefined`] |
|
|
2321
2321
|
| **slug** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
2322
2322
|
| **url** | `string` | | [Optional] [Defaults to `undefined`] |
|
|
2323
|
-
| **relation** | `identity`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, subset, superset, overlap, disjoint] |
|
|
2323
|
+
| **relation** | `identity`, `complement`, `subset`, `superset`, `overlap`, `disjoint` | | [Optional] [Defaults to `undefined`] [Enum: identity, complement, subset, superset, overlap, disjoint] |
|
|
2324
2324
|
| **minConfidence** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
2325
2325
|
| **limit** | `number` | | [Optional] [Defaults to `undefined`] |
|
|
2326
2326
|
| **includePrices** | `boolean` | | [Optional] [Defaults to `undefined`] |
|
|
@@ -2371,7 +2371,7 @@ async function example() {
|
|
|
2371
2371
|
const api = new DefaultApi();
|
|
2372
2372
|
|
|
2373
2373
|
const body = {
|
|
2374
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2374
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2375
2375
|
exchange: exchange_example,
|
|
2376
2376
|
// string
|
|
2377
2377
|
outcomeId: outcomeId_example,
|
|
@@ -2400,7 +2400,7 @@ example().catch(console.error);
|
|
|
2400
2400
|
|
|
2401
2401
|
| Name | Type | Description | Notes |
|
|
2402
2402
|
|------------- | ------------- | ------------- | -------------|
|
|
2403
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2403
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2404
2404
|
| **outcomeId** | `string` | | [Defaults to `undefined`] |
|
|
2405
2405
|
| **start** | `Date` | Start of the time range | [Optional] [Defaults to `undefined`] |
|
|
2406
2406
|
| **end** | `Date` | End of the time range | [Optional] [Defaults to `undefined`] |
|
|
@@ -2450,7 +2450,7 @@ async function example() {
|
|
|
2450
2450
|
const api = new DefaultApi();
|
|
2451
2451
|
|
|
2452
2452
|
const body = {
|
|
2453
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2453
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2454
2454
|
exchange: exchange_example,
|
|
2455
2455
|
// FilterEventsRequest (optional)
|
|
2456
2456
|
filterEventsRequest: ...,
|
|
@@ -2473,7 +2473,7 @@ example().catch(console.error);
|
|
|
2473
2473
|
|
|
2474
2474
|
| Name | Type | Description | Notes |
|
|
2475
2475
|
|------------- | ------------- | ------------- | -------------|
|
|
2476
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2476
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2477
2477
|
| **filterEventsRequest** | [FilterEventsRequest](FilterEventsRequest.md) | | [Optional] |
|
|
2478
2478
|
|
|
2479
2479
|
### Return type
|
|
@@ -2520,7 +2520,7 @@ async function example() {
|
|
|
2520
2520
|
const api = new DefaultApi();
|
|
2521
2521
|
|
|
2522
2522
|
const body = {
|
|
2523
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2523
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2524
2524
|
exchange: exchange_example,
|
|
2525
2525
|
// FilterMarketsRequest (optional)
|
|
2526
2526
|
filterMarketsRequest: ...,
|
|
@@ -2543,7 +2543,7 @@ example().catch(console.error);
|
|
|
2543
2543
|
|
|
2544
2544
|
| Name | Type | Description | Notes |
|
|
2545
2545
|
|------------- | ------------- | ------------- | -------------|
|
|
2546
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2546
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2547
2547
|
| **filterMarketsRequest** | [FilterMarketsRequest](FilterMarketsRequest.md) | | [Optional] |
|
|
2548
2548
|
|
|
2549
2549
|
### Return type
|
|
@@ -2590,7 +2590,7 @@ async function example() {
|
|
|
2590
2590
|
const api = new DefaultApi();
|
|
2591
2591
|
|
|
2592
2592
|
const body = {
|
|
2593
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2593
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2594
2594
|
exchange: exchange_example,
|
|
2595
2595
|
// GetExecutionPriceRequest (optional)
|
|
2596
2596
|
getExecutionPriceRequest: ...,
|
|
@@ -2613,7 +2613,7 @@ example().catch(console.error);
|
|
|
2613
2613
|
|
|
2614
2614
|
| Name | Type | Description | Notes |
|
|
2615
2615
|
|------------- | ------------- | ------------- | -------------|
|
|
2616
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2616
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2617
2617
|
| **getExecutionPriceRequest** | [GetExecutionPriceRequest](GetExecutionPriceRequest.md) | | [Optional] |
|
|
2618
2618
|
|
|
2619
2619
|
### Return type
|
|
@@ -2660,7 +2660,7 @@ async function example() {
|
|
|
2660
2660
|
const api = new DefaultApi();
|
|
2661
2661
|
|
|
2662
2662
|
const body = {
|
|
2663
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2663
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2664
2664
|
exchange: exchange_example,
|
|
2665
2665
|
// GetExecutionPriceDetailedRequest (optional)
|
|
2666
2666
|
getExecutionPriceDetailedRequest: ...,
|
|
@@ -2683,7 +2683,7 @@ example().catch(console.error);
|
|
|
2683
2683
|
|
|
2684
2684
|
| Name | Type | Description | Notes |
|
|
2685
2685
|
|------------- | ------------- | ------------- | -------------|
|
|
2686
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2686
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2687
2687
|
| **getExecutionPriceDetailedRequest** | [GetExecutionPriceDetailedRequest](GetExecutionPriceDetailedRequest.md) | | [Optional] |
|
|
2688
2688
|
|
|
2689
2689
|
### Return type
|
|
@@ -2787,7 +2787,7 @@ async function example() {
|
|
|
2787
2787
|
const api = new DefaultApi();
|
|
2788
2788
|
|
|
2789
2789
|
const body = {
|
|
2790
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2790
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2791
2791
|
exchange: exchange_example,
|
|
2792
2792
|
// LoadMarketsRequest (optional)
|
|
2793
2793
|
loadMarketsRequest: ...,
|
|
@@ -2810,7 +2810,7 @@ example().catch(console.error);
|
|
|
2810
2810
|
|
|
2811
2811
|
| Name | Type | Description | Notes |
|
|
2812
2812
|
|------------- | ------------- | ------------- | -------------|
|
|
2813
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2813
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2814
2814
|
| **loadMarketsRequest** | [LoadMarketsRequest](LoadMarketsRequest.md) | | [Optional] |
|
|
2815
2815
|
|
|
2816
2816
|
### Return type
|
|
@@ -2857,7 +2857,7 @@ async function example() {
|
|
|
2857
2857
|
const api = new DefaultApi();
|
|
2858
2858
|
|
|
2859
2859
|
const body = {
|
|
2860
|
-
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2860
|
+
// 'polymarket' | 'kalshi' | 'kalshi-demo' | 'limitless' | 'probable' | 'baozi' | 'myriad' | 'opinion' | 'metaculus' | 'smarkets' | 'polymarket_us' | 'gemini-titan' | 'hyperliquid' | 'suibets' | 'mock' | 'router' | The prediction market exchange to target.
|
|
2861
2861
|
exchange: exchange_example,
|
|
2862
2862
|
// SubmitOrderRequest (optional)
|
|
2863
2863
|
submitOrderRequest: ...,
|
|
@@ -2880,7 +2880,7 @@ example().catch(console.error);
|
|
|
2880
2880
|
|
|
2881
2881
|
| Name | Type | Description | Notes |
|
|
2882
2882
|
|------------- | ------------- | ------------- | -------------|
|
|
2883
|
-
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, mock, router] |
|
|
2883
|
+
| **exchange** | `polymarket`, `kalshi`, `kalshi-demo`, `limitless`, `probable`, `baozi`, `myriad`, `opinion`, `metaculus`, `smarkets`, `polymarket_us`, `gemini-titan`, `hyperliquid`, `suibets`, `mock`, `router` | The prediction market exchange to target. | [Defaults to `undefined`] [Enum: polymarket, kalshi, kalshi-demo, limitless, probable, baozi, myriad, opinion, metaculus, smarkets, polymarket_us, gemini-titan, hyperliquid, suibets, mock, router] |
|
|
2884
2884
|
| **submitOrderRequest** | [SubmitOrderRequest](SubmitOrderRequest.md) | | [Optional] |
|
|
2885
2885
|
|
|
2886
2886
|
### Return type
|