Skip to content
Closed
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
22 changes: 21 additions & 1 deletion docs/api-reference/openapi-hosted.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "PMXT Hosted Router API",
"description": "Hosted-only endpoints for cross-venue search, matching, arbitrage, and SQL.",
"version": "81efb2b"
"version": "480d46a"
},
"servers": [
{
Expand Down Expand Up @@ -754,6 +754,16 @@
},
"description": "Minimum price difference to include (0.0-1.0)."
},
{
"in": "query",
"name": "maxDifference",
"schema": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"description": "Maximum price difference to include (0.0-1.0). Defaults to 0.20 when scanning opportunities with sort=priceDifference or minDifference > 0; pass 1 to include raw giant spreads.\n"
},
{
"in": "query",
"name": "category",
Expand Down Expand Up @@ -907,6 +917,16 @@
},
"description": "Minimum price difference to include (0.0-1.0)."
},
{
"in": "query",
"name": "maxDifference",
"schema": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"description": "Maximum price difference to include (0.0-1.0). Defaults to 0.20; pass 1 to include raw giant spreads.\n"
},
{
"in": "query",
"name": "category",
Expand Down
2 changes: 2 additions & 0 deletions docs/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5253,6 +5253,7 @@ Bulk cross-venue price comparison. Returns matched market pairs from the market_
| `query` | string | No | Keyword search across matched market titles. |
| `relations` | string | No | Comma-separated relation filter. Valid values: identity, subset, superset, overlap, disjoint. |
| `minDifference` | number | No | Minimum price difference to include (0.0-1.0). |
| `maxDifference` | number | No | Maximum price difference to include (0.0-1.0). Defaults to 0.20 when scanning opportunities with sort=priceDifference or minDifference > 0; pass 1 to include raw giant spreads. |
| `category` | string | No | Filter both sides of the match by category. |
| `limit` | integer | No | Maximum number of matched pairs to return. |
| `minConfidence` | number | No | Minimum match confidence score (0.0-1.0). |
Expand All @@ -5271,6 +5272,7 @@ Bulk cross-venue price comparison. Returns matched market pairs from the market_
| --- | --- | --- | --- |
| `relations` | string | No | Comma-separated relation filter. Valid values: identity, subset, superset, overlap, disjoint. |
| `minDifference` | number | No | Minimum price difference to include (0.0-1.0). |
| `maxDifference` | number | No | Maximum price difference to include (0.0-1.0). Defaults to 0.20; pass 1 to include raw giant spreads. |
| `category` | string | No | Filter both sides of the match by category. |
| `limit` | integer | No | Maximum number of matched pairs to return. |
| `minConfidence` | number | No | Minimum match confidence score (0.0-1.0). |
Expand Down
Loading