get_market
Pack: futuur · Endpoint: https://gateway.pipeworx.io/futuur/mcp
Get one Futuur market by id with its full outcome list and per-outcome implied probabilities (play-money OOM + real-money USDC, as percentages), volumes, tags, description, and resolution status. Example id: 231754 (“Which price will Bitcoin hit in 2026?”). Keyless.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | Futuur market id, e.g. 231754. Get ids from search_markets or top_markets. |
Example call
Arguments
{
"id": 231754
}
curl
curl -X POST https://gateway.pipeworx.io/futuur/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_market","arguments":{"id":231754}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_market', {
"id": 231754
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"futuur": {
"url": "https://gateway.pipeworx.io/futuur/mcp"
}
}
}
See Getting Started for client-specific install steps.