Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdks/python/pmxt/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,6 +746,8 @@ class MarketFetchParams(TypedDict, total=False):
market_id: str
outcome_id: str
event_id: str
source_exchange: str
exchange: str
category: str
tags: List[str]
filter: MarketFilterCriteria
Expand All @@ -764,6 +766,8 @@ class EventFetchParams(TypedDict, total=False):
search_in: Literal["title", "description", "both"]
event_id: str
slug: str
source_exchange: str
exchange: str
series: str
category: str
tags: List[str]
Expand Down
12 changes: 12 additions & 0 deletions sdks/typescript/pmxt/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,12 @@ export interface MarketFilterParams {
/** Find markets belonging to an event */
eventId?: string;

/** Filter by source venue (e.g. 'polymarket', 'kalshi', 'myriad'). */
sourceExchange?: string;

/** Alias for `sourceExchange`. */
exchange?: string;

/** Pagination page (used by Limitless) */
page?: number;

Expand Down Expand Up @@ -497,6 +503,12 @@ export interface EventFetchParams {
/** Lookup by event slug */
slug?: string;

/** Filter by source venue (e.g. 'polymarket', 'kalshi', 'myriad'). */
sourceExchange?: string;

/** Alias for `sourceExchange`. */
exchange?: string;

/** Filter events by their parent series. Accepts the venue-native series id / ticker / slug. */
series?: string;

Expand Down
Loading