GET /api/v1/pools/{id}
Returns a single pool by its unique identifier, including its associated markets and metadata.
Authentication
None required. This is a public endpoint.
Request
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | The unique pool ID |
Example
curl https://intotes.com/api/v1/pools/42
Response
200 OK
{
"id": 42,
"name": "Will ETH close above $3,500?",
"name_ru": "ETH закроется выше $3,500?",
"rules": "Resolves YES if ETH spot price on Binance is above $3,500 at the finish time.",
"rules_ru": "Разрешается ДА, если спотовая цена ETH на Binance выше $3,500 в момент завершения.",
"won_side": null,
"margin": 0,
"finish_at": "2026-04-10T18:00:00Z",
"live_at": "2026-04-04T12:00:00Z",
"markets": [
{
"id": 101,
"pool_id": 42,
"name": "Yes",
"name_ru": "Да",
"yes_probability": 0.55,
"market_type": "lmsr",
"volume": 150000,
"b": 10000,
"q_yes": 5000,
"q_no": 4500,
"paused": false,
"resolved": false,
"winning_outcome": null,
"outcome_index": 0,
"yes_name": "Yes",
"no_name": "No"
}
],
"metadata": {
"market_names": ["Yes"],
"market_probabilities": [0.55],
"lmsr_b_kopecks": 1000000
}
}
Errors
| Status | Code | Description |
|---|---|---|
| 400 | invalid_pool_id | The pool ID is not a valid integer |
| 404 | pool_not_found | No pool exists with the given ID |
| 500 | internal_error | Unexpected server error |